<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>79435</bug_id>
          
          <creation_ts>2012-02-23 20:34:47 -0800</creation_ts>
          <short_desc>incorrect line-height for styled menulist (select tag) in windows theme (wincairo port)</short_desc>
          <delta_ts>2012-11-14 13:27:11 -0800</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>Layout and Rendering</component>
          <version>528+ (Nightly build)</version>
          <rep_platform>PC</rep_platform>
          <op_sys>Windows 7</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>0</everconfirmed>
          <reporter name="Lynn Neir">lynn.neir</reporter>
          <assigned_to name="Brent Fulgham">bfulgham</assigned_to>
          <cc>benjamin</cc>
    
    <cc>bfulgham</cc>
    
    <cc>lynn.neir</cc>
    
    <cc>webkit.review.bot</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>563881</commentid>
    <comment_count>0</comment_count>
    <who name="Lynn Neir">lynn.neir</who>
    <bug_when>2012-02-23 20:34:47 -0800</bug_when>
    <thetext>According to Layout test: fast/forms/menulist-restrict-line-height.html, the line-height should not be honored for styled popup buttons.  Currently, on wincairo port, this test clips the styled popup button.

Looking at the Safari theme in method: RenderThemeSafari::adjustMenuListButtonStyle, they have extra line: style-&gt;setLineHeight(RenderStyle::initialLineHeight());.  This code is not present in windows theme code.  So, I add this line and the resulting code is shown below.  I ran tests, it fixes the test noted above and doesn&apos;t break any other tests.

void RenderThemeWin::adjustMenuListButtonStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const
{
    // These are the paddings needed to place the text correctly in the &lt;select&gt; box
    const int dropDownBoxPaddingTop    = 2;
    const int dropDownBoxPaddingRight  = style-&gt;direction() == LTR ? 4 + dropDownButtonWidth : 4;
    const int dropDownBoxPaddingBottom = 2;
    const int dropDownBoxPaddingLeft   = style-&gt;direction() == LTR ? 4 : 4 + dropDownButtonWidth;
    // The &lt;select&gt; box must be at least 12px high for the button to render nicely on Windows
    const int dropDownBoxMinHeight = 12;
    
    // Position the text correctly within the select box and make the box wide enough to fit the dropdown button
    style-&gt;setPaddingTop(Length(dropDownBoxPaddingTop, Fixed));
    style-&gt;setPaddingRight(Length(dropDownBoxPaddingRight, Fixed));
    style-&gt;setPaddingBottom(Length(dropDownBoxPaddingBottom, Fixed));
    style-&gt;setPaddingLeft(Length(dropDownBoxPaddingLeft, Fixed));

    // Height is locked to auto
    style-&gt;setHeight(Length(Auto));

    // Calculate our min-height
    int minHeight = style-&gt;fontMetrics().height();
    minHeight = max(minHeight, dropDownBoxMinHeight);

    style-&gt;setMinHeight(Length(minHeight, Fixed));
    
    style-&gt;setLineHeight(RenderStyle::initialLineHeight());

    // White-space is locked to pre
    style-&gt;setWhiteSpace(PRE);
}</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>563962</commentid>
    <comment_count>1</comment_count>
    <who name="Benjamin Poulain">benjamin</who>
    <bug_when>2012-02-23 23:02:29 -0800</bug_when>
    <thetext>You should attach the patch to the bug (&quot;Add an attachement&quot;).

Here are the basic steps:
-make the patch
-update the test results with your patch
-./Tools/Scripts/prepare-changelog --bug 79435
--&gt; This update the relevant ChangeLog files. Open them and explain what the patch does
-attach the full diff here
-set the r (review) and cq (commit queue) flags to &quot;?&quot;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>563967</commentid>
    <comment_count>2</comment_count>
    <who name="Benjamin Poulain">benjamin</who>
    <bug_when>2012-02-23 23:04:40 -0800</bug_when>
    <thetext>Note that we only rigorously track the bugs with a patch in &quot;r?&quot;. So when you create a bug report like here, it can be ignored for a long time.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>580618</commentid>
    <comment_count>3</comment_count>
      <attachid>132307</attachid>
    <who name="Lynn Neir">lynn.neir</who>
    <bug_when>2012-03-16 10:07:34 -0700</bug_when>
    <thetext>Created attachment 132307
patch to fix line-height issue

This patch fixes line-height issue in three tests:
- fast/forms/menulist-restrict-line-height.html
- fast/forms/control-restrict-line-height.html
- fast/forms/basic-selects.html

I didn&apos;t include changes to wincairo platform Skipped file as it seems test scripts are not setup to use the skipped file.  I verified results by running winlauncher and visually comparing results to Safari/Chrome.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>580869</commentid>
    <comment_count>4</comment_count>
    <who name="WebKit Review Bot">webkit.review.bot</who>
    <bug_when>2012-03-16 13:17:16 -0700</bug_when>
    <thetext>Attachment 132307 did not pass style-queue:

Failed to run &quot;[&apos;Tools/Scripts/check-webkit-style&apos;, &apos;--diff-files&apos;, u&apos;Source/WebCore/ChangeLog&apos;, u&apos;Source/WebCor...&quot; exit_code: 1
Source/WebCore/ChangeLog:4:  Line contains tab character.  [whitespace/tab] [5]
Source/WebCore/ChangeLog:5:  Line contains tab character.  [whitespace/tab] [5]
Source/WebCore/ChangeLog:6:  Line contains tab character.  [whitespace/tab] [5]
Source/WebCore/ChangeLog:7:  Line contains tab character.  [whitespace/tab] [5]
Source/WebCore/ChangeLog:8:  Line contains tab character.  [whitespace/tab] [5]
Source/WebCore/ChangeLog:9:  Line contains tab character.  [whitespace/tab] [5]
Source/WebCore/ChangeLog:13:  You should remove the &apos;No new tests&apos; and either add and list tests, or explain why no new tests were possible.  [changelog/nonewtests] [5]
Total errors found: 7 in 2 files


If any of these errors are false positives, please file a bug against check-webkit-style.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>580873</commentid>
    <comment_count>5</comment_count>
    <who name="Lynn Neir">lynn.neir</who>
    <bug_when>2012-03-16 13:22:22 -0700</bug_when>
    <thetext>(In reply to comment #4)
&gt; Attachment 132307 [details] did not pass style-queue:
&gt; 
&gt; Failed to run &quot;[&apos;Tools/Scripts/check-webkit-style&apos;, &apos;--diff-files&apos;, u&apos;Source/WebCore/ChangeLog&apos;, u&apos;Source/WebCor...&quot; exit_code: 1
&gt; Source/WebCore/ChangeLog:4:  Line contains tab character.  [whitespace/tab] [5]
&gt; Source/WebCore/ChangeLog:5:  Line contains tab character.  [whitespace/tab] [5]
&gt; Source/WebCore/ChangeLog:6:  Line contains tab character.  [whitespace/tab] [5]
&gt; Source/WebCore/ChangeLog:7:  Line contains tab character.  [whitespace/tab] [5]
&gt; Source/WebCore/ChangeLog:8:  Line contains tab character.  [whitespace/tab] [5]
&gt; Source/WebCore/ChangeLog:9:  Line contains tab character.  [whitespace/tab] [5]
&gt; Source/WebCore/ChangeLog:13:  You should remove the &apos;No new tests&apos; and either add and list tests, or explain why no new tests were possible.  [changelog/nonewtests] [5]

style errors are false positives, style check ran fine for me.

as explained earlier:
This patch fixes line-height issue in three tests:
- fast/forms/menulist-restrict-line-height.html
- fast/forms/control-restrict-line-height.html
- fast/forms/basic-selects.html

I didn&apos;t include changes to wincairo platform Skipped file as it seems test scripts are not setup to use the skipped file.  I verified results by running winlauncher and visually comparing results to Safari/Chrome.

&gt; Total errors found: 7 in 2 files
&gt; 
&gt; 
&gt; If any of these errors are false positives, please file a bug against check-webkit-style.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>580881</commentid>
    <comment_count>6</comment_count>
      <attachid>132307</attachid>
    <who name="Benjamin Poulain">benjamin</who>
    <bug_when>2012-03-16 13:29:48 -0700</bug_when>
    <thetext>Comment on attachment 132307
patch to fix line-height issue

&gt; &gt; Source/WebCore/ChangeLog:13:  You should remove the &apos;No new tests&apos; and either add and list tests, or explain why no new tests were possible.  [changelog/nonewtests] [5]
&gt; 
&gt; style errors are false positives, style check ran fine for me.

Obviously not.
Check the file by yourself: https://bug-79435-attachments.webkit.org/attachment.cgi?id=132307</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>580893</commentid>
    <comment_count>7</comment_count>
    <who name="Lynn Neir">lynn.neir</who>
    <bug_when>2012-03-16 13:36:20 -0700</bug_when>
    <thetext>(In reply to comment #6)
&gt; (From update of attachment 132307 [details])
&gt; &gt; &gt; Source/WebCore/ChangeLog:13:  You should remove the &apos;No new tests&apos; and either add and list tests, or explain why no new tests were possible.  [changelog/nonewtests] [5]
&gt; &gt; 
&gt; &gt; style errors are false positives, style check ran fine for me.
&gt; 
&gt; Obviously not.
&gt; Check the file by yourself: https://bug-79435-attachments.webkit.org/attachment.cgi?id=132307

Yes, sorry I didn&apos;t realize that style checks were also performed on ChangeLog files.  I will resubmit here in a bit.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>580901</commentid>
    <comment_count>8</comment_count>
      <attachid>132366</attachid>
    <who name="Lynn Neir">lynn.neir</who>
    <bug_when>2012-03-16 13:44:05 -0700</bug_when>
    <thetext>Created attachment 132366
new patch fixing style issue, update to ChangeLog</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>643219</commentid>
    <comment_count>9</comment_count>
      <attachid>132366</attachid>
    <who name="Gyuyoung Kim">gyuyoung.kim</who>
    <bug_when>2012-06-06 22:28:15 -0700</bug_when>
    <thetext>Comment on attachment 132366
new patch fixing style issue, update to ChangeLog

View in context: https://bugs.webkit.org/attachment.cgi?id=132366&amp;action=review

&gt; Source/WebCore/ChangeLog:4
&gt; +        incorrect line-height for styled menulist (select tag) in windows theme (wincairo port)

Generally, bug url is placed below bug title.

&gt; Source/WebCore/ChangeLog:6
&gt; +        applied same fix as in RenderThemeSafari::adjustMenuListButtonStyle to Windows theme to fix issue in three tests: 

Test cases are placed below patch description.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>766500</commentid>
    <comment_count>10</comment_count>
    <who name="Brent Fulgham">bfulgham</who>
    <bug_when>2012-11-13 23:34:59 -0800</bug_when>
    <thetext>This poor one-liner has been languishing for too long!

Lynn, if you don&apos;t have time to clean up the patch I&apos;ll try to move it along tomorrow.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>767169</commentid>
    <comment_count>11</comment_count>
      <attachid>132366</attachid>
    <who name="Brent Fulgham">bfulgham</who>
    <bug_when>2012-11-14 12:21:11 -0800</bug_when>
    <thetext>Comment on attachment 132366
new patch fixing style issue, update to ChangeLog

I will clean up the ChangeLog and land the patch.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>767236</commentid>
    <comment_count>12</comment_count>
    <who name="Brent Fulgham">bfulgham</who>
    <bug_when>2012-11-14 13:27:11 -0800</bug_when>
    <thetext>Committed r134657: &lt;http://trac.webkit.org/changeset/134657&gt;</thetext>
  </long_desc>
      
          <attachment
              isobsolete="1"
              ispatch="1"
              isprivate="0"
          >
            <attachid>132307</attachid>
            <date>2012-03-16 10:07:34 -0700</date>
            <delta_ts>2012-03-16 13:44:05 -0700</delta_ts>
            <desc>patch to fix line-height issue</desc>
            <filename>line-height-patch.patch</filename>
            <type>text/plain</type>
            <size>1537</size>
            <attacher name="Lynn Neir">lynn.neir</attacher>
            
              <data encoding="base64">SW5kZXg6IFNvdXJjZS9XZWJDb3JlL0NoYW5nZUxvZwo9PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBTb3VyY2UvV2Vi
Q29yZS9DaGFuZ2VMb2cJKHJldmlzaW9uIDExMTAxOCkKKysrIFNvdXJjZS9XZWJDb3JlL0NoYW5n
ZUxvZwkod29ya2luZyBjb3B5KQpAQCAtMSwzICsxLDIwIEBACisyMDEyLTAzLTE2ICBMeW5uIE5l
aXIgIDxseW5uLm5laXJAc2t5cGUubmV0PgorCisgICAgICAgIGh0dHBzOi8vYnVncy53ZWJraXQu
b3JnL3Nob3dfYnVnLmNnaT9pZD03OTQzNQorCQlpbmNvcnJlY3QgbGluZS1oZWlnaHQgZm9yIHN0
eWxlZCBtZW51bGlzdCAoc2VsZWN0IHRhZykgaW4gd2luZG93cyB0aGVtZSAod2luY2Fpcm8gcG9y
dCkKKwkJCisJCWFwcGxpZWQgc2FtZSBmaXggYXMgaW4gUmVuZGVyVGhlbWVTYWZhcmk6OmFkanVz
dE1lbnVMaXN0QnV0dG9uU3R5bGUgdG8gV2luZG93cyB0aGVtZSB0byBmaXggaXNzdWUgaW4gdGhy
ZWUgdGVzdHM6IAorCQlmYXN0L2Zvcm1zL21lbnVsaXN0LXJlc3RyaWN0LWxpbmUtaGVpZ2h0Lmh0
bWwKKwkJZmFzdC9mb3Jtcy9jb250cm9sLXJlc3RyaWN0LWxpbmUtaGVpZ2h0Lmh0bWwKKwkJZmFz
dC9mb3Jtcy9iYXNpYy1zZWxlY3RzLmh0bWwKKworICAgICAgICBSZXZpZXdlZCBieSBOT0JPRFkg
KE9PUFMhKS4KKworICAgICAgICBObyBuZXcgdGVzdHMuIChPT1BTISkKKworICAgICAgICAqIHJl
bmRlcmluZy9SZW5kZXJUaGVtZVdpbi5jcHA6CisgICAgICAgIChXZWJDb3JlOjpSZW5kZXJUaGVt
ZVdpbjo6YWRqdXN0TWVudUxpc3RCdXR0b25TdHlsZSk6CisKIDIwMTItMDMtMTYgIFBhdmVsIFBv
ZGl2aWxvdiAgPHBvZGl2aWxvdkBjaHJvbWl1bS5vcmc+CiAKICAgICAgICAgV2ViIEluc3BlY3Rv
cjogZml4IGV4Y2VwdGlvbiB3aGVuIGhvdmVyaW5nIG92ZXIgYm91bmQgZnVuY3Rpb24gaW4gaGVh
cCBwcm9maWxlci4KSW5kZXg6IFNvdXJjZS9XZWJDb3JlL3JlbmRlcmluZy9SZW5kZXJUaGVtZVdp
bi5jcHAKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PQotLS0gU291cmNlL1dlYkNvcmUvcmVuZGVyaW5nL1JlbmRlclRoZW1l
V2luLmNwcAkocmV2aXNpb24gMTEwOTQ0KQorKysgU291cmNlL1dlYkNvcmUvcmVuZGVyaW5nL1Jl
bmRlclRoZW1lV2luLmNwcAkod29ya2luZyBjb3B5KQpAQCAtNzg0LDYgKzc4NCw4IEBAIHZvaWQg
UmVuZGVyVGhlbWVXaW46OmFkanVzdE1lbnVMaXN0QnV0dG8KICAgICBtaW5IZWlnaHQgPSBtYXgo
bWluSGVpZ2h0LCBkcm9wRG93bkJveE1pbkhlaWdodCk7CiAKICAgICBzdHlsZS0+c2V0TWluSGVp
Z2h0KExlbmd0aChtaW5IZWlnaHQsIEZpeGVkKSk7CisKKyAgICBzdHlsZS0+c2V0TGluZUhlaWdo
dChSZW5kZXJTdHlsZTo6aW5pdGlhbExpbmVIZWlnaHQoKSk7CiAgICAgCiAgICAgLy8gV2hpdGUt
c3BhY2UgaXMgbG9ja2VkIHRvIHByZQogICAgIHN0eWxlLT5zZXRXaGl0ZVNwYWNlKFBSRSk7Cg==
</data>
<flag name="review"
          id="135930"
          type_id="1"
          status="-"
          setter="benjamin"
    />
          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>132366</attachid>
            <date>2012-03-16 13:44:05 -0700</date>
            <delta_ts>2012-11-14 12:21:11 -0800</delta_ts>
            <desc>new patch fixing style issue, update to ChangeLog</desc>
            <filename>line-height-patch2.patch</filename>
            <type>text/plain</type>
            <size>1758</size>
            <attacher name="Lynn Neir">lynn.neir</attacher>
            
              <data encoding="base64">SW5kZXg6IFNvdXJjZS9XZWJDb3JlL0NoYW5nZUxvZwo9PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBTb3VyY2UvV2Vi
Q29yZS9DaGFuZ2VMb2cJKHJldmlzaW9uIDExMTAxOCkKKysrIFNvdXJjZS9XZWJDb3JlL0NoYW5n
ZUxvZwkod29ya2luZyBjb3B5KQpAQCAtMSwzICsxLDIwIEBACisyMDEyLTAzLTE2ICBMeW5uIE5l
aXIgIDxseW5uLm5laXJAc2t5cGUubmV0PgorCisgICAgICAgIGh0dHBzOi8vYnVncy53ZWJraXQu
b3JnL3Nob3dfYnVnLmNnaT9pZD03OTQzNQorICAgICAgICBpbmNvcnJlY3QgbGluZS1oZWlnaHQg
Zm9yIHN0eWxlZCBtZW51bGlzdCAoc2VsZWN0IHRhZykgaW4gd2luZG93cyB0aGVtZSAod2luY2Fp
cm8gcG9ydCkKKworICAgICAgICBhcHBsaWVkIHNhbWUgZml4IGFzIGluIFJlbmRlclRoZW1lU2Fm
YXJpOjphZGp1c3RNZW51TGlzdEJ1dHRvblN0eWxlIHRvIFdpbmRvd3MgdGhlbWUgdG8gZml4IGlz
c3VlIGluIHRocmVlIHRlc3RzOiAKKyAgICAgICAgZmFzdC9mb3Jtcy9tZW51bGlzdC1yZXN0cmlj
dC1saW5lLWhlaWdodC5odG1sCisgICAgICAgIGZhc3QvZm9ybXMvY29udHJvbC1yZXN0cmljdC1s
aW5lLWhlaWdodC5odG1sCisgICAgICAgIGZhc3QvZm9ybXMvYmFzaWMtc2VsZWN0cy5odG1sCisK
KyAgICAgICAgUmV2aWV3ZWQgYnkgTk9CT0RZIChPT1BTISkuCisKKyAgICAgICAgSSBkaWRuJ3Qg
aW5jbHVkZSBjaGFuZ2VzIHRvIHdpbmNhaXJvIHBsYXRmb3JtIFNraXBwZWQgZmlsZSBhcyBpdCBz
ZWVtcyB0ZXN0IHNjcmlwdHMgYXJlIG5vdCBzZXR1cCB0byB1c2UgdGhlIHNraXBwZWQgZmlsZS4g
IEkgdmVyaWZpZWQgcmVzdWx0cyBieSBydW5uaW5nIHdpbmxhdW5jaGVyIGFuZCB2aXN1YWxseSBj
b21wYXJpbmcgcmVzdWx0cyB0byBTYWZhcmkvQ2hyb21lLgorCisgICAgICAgICogcmVuZGVyaW5n
L1JlbmRlclRoZW1lV2luLmNwcDoKKyAgICAgICAgKFdlYkNvcmU6OlJlbmRlclRoZW1lV2luOjph
ZGp1c3RNZW51TGlzdEJ1dHRvblN0eWxlKToKKwogMjAxMi0wMy0xNiAgUGF2ZWwgUG9kaXZpbG92
ICA8cG9kaXZpbG92QGNocm9taXVtLm9yZz4KIAogICAgICAgICBXZWIgSW5zcGVjdG9yOiBmaXgg
ZXhjZXB0aW9uIHdoZW4gaG92ZXJpbmcgb3ZlciBib3VuZCBmdW5jdGlvbiBpbiBoZWFwIHByb2Zp
bGVyLgpJbmRleDogU291cmNlL1dlYkNvcmUvcmVuZGVyaW5nL1JlbmRlclRoZW1lV2luLmNwcAo9
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09Ci0tLSBTb3VyY2UvV2ViQ29yZS9yZW5kZXJpbmcvUmVuZGVyVGhlbWVXaW4uY3Bw
CShyZXZpc2lvbiAxMTA5NDQpCisrKyBTb3VyY2UvV2ViQ29yZS9yZW5kZXJpbmcvUmVuZGVyVGhl
bWVXaW4uY3BwCSh3b3JraW5nIGNvcHkpCkBAIC03ODQsNiArNzg0LDggQEAgdm9pZCBSZW5kZXJU
aGVtZVdpbjo6YWRqdXN0TWVudUxpc3RCdXR0bwogICAgIG1pbkhlaWdodCA9IG1heChtaW5IZWln
aHQsIGRyb3BEb3duQm94TWluSGVpZ2h0KTsKIAogICAgIHN0eWxlLT5zZXRNaW5IZWlnaHQoTGVu
Z3RoKG1pbkhlaWdodCwgRml4ZWQpKTsKKworICAgIHN0eWxlLT5zZXRMaW5lSGVpZ2h0KFJlbmRl
clN0eWxlOjppbml0aWFsTGluZUhlaWdodCgpKTsKICAgICAKICAgICAvLyBXaGl0ZS1zcGFjZSBp
cyBsb2NrZWQgdG8gcHJlCiAgICAgc3R5bGUtPnNldFdoaXRlU3BhY2UoUFJFKTsK
</data>
<flag name="review"
          id="136001"
          type_id="1"
          status="+"
          setter="bfulgham"
    />
    <flag name="commit-queue"
          id="189195"
          type_id="3"
          status="-"
          setter="bfulgham"
    />
          </attachment>
      

    </bug>

</bugzilla>