<?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>106349</bug_id>
          
          <creation_ts>2013-01-08 10:59:35 -0800</creation_ts>
          <short_desc>AX: native popup buttons should not use textUnderElement for their title</short_desc>
          <delta_ts>2013-01-09 07:57:36 -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>Accessibility</component>
          <version>528+ (Nightly build)</version>
          <rep_platform>Unspecified</rep_platform>
          <op_sys>Unspecified</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>1</everconfirmed>
          <reporter name="chris fleizach">cfleizach</reporter>
          <assigned_to name="chris fleizach">cfleizach</assigned_to>
          <cc>aboxhall</cc>
    
    <cc>apinheiro</cc>
    
    <cc>dglazkov</cc>
    
    <cc>dmazzoni</cc>
    
    <cc>jdiggs</cc>
    
    <cc>noel.gordon</cc>
    
    <cc>rniwa</cc>
    
    <cc>webkit-ews</cc>
    
    <cc>webkit.review.bot</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>802390</commentid>
    <comment_count>0</comment_count>
    <who name="chris fleizach">cfleizach</who>
    <bug_when>2013-01-08 10:59:35 -0800</bug_when>
    <thetext>Native pop up buttons (&lt;select&gt;) should not use textUnderElement for their visibleText/title. That&apos;s because that would cause the title to be the value of the pop up button. 

We want to communicate that info through stringValue(), not the title</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>802418</commentid>
    <comment_count>1</comment_count>
      <attachid>181714</attachid>
    <who name="chris fleizach">cfleizach</who>
    <bug_when>2013-01-08 11:17:41 -0800</bug_when>
    <thetext>Created attachment 181714
patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>802426</commentid>
    <comment_count>2</comment_count>
      <attachid>181714</attachid>
    <who name="Dominic Mazzoni">dmazzoni</who>
    <bug_when>2013-01-08 11:23:35 -0800</bug_when>
    <thetext>Comment on attachment 181714
patch

Unofficial review.

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

&gt; Source/WebCore/accessibility/AccessibilityNodeObject.cpp:1196
&gt; +        if (renderer() &amp;&amp; renderer()-&gt;isMenuList())

This should work for elements without a renderer (like in canvas fallback content, or in a region of the page that&apos;s hidden from sighted users but has aria-hidden=false). Instead of checking renderer()-&gt;isMenuList(), check if it&apos;s a select element and if it has multiple or not. There&apos;s already similar code in this file.

If there are cases where a rendered popup button is different than an unrendered one, you could override it in AccessibilityRenderObject - but I don&apos;t think you need to in this case.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>802427</commentid>
    <comment_count>3</comment_count>
      <attachid>181714</attachid>
    <who name="Early Warning System Bot">webkit-ews</who>
    <bug_when>2013-01-08 11:24:26 -0800</bug_when>
    <thetext>Comment on attachment 181714
patch

Attachment 181714 did not pass qt-ews (qt):
Output: http://queues.webkit.org/results/15775013</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>802428</commentid>
    <comment_count>4</comment_count>
      <attachid>181714</attachid>
    <who name="Early Warning System Bot">webkit-ews</who>
    <bug_when>2013-01-08 11:26:28 -0800</bug_when>
    <thetext>Comment on attachment 181714
patch

Attachment 181714 did not pass qt-wk2-ews (qt):
Output: http://queues.webkit.org/results/15763182</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>802429</commentid>
    <comment_count>5</comment_count>
    <who name="chris fleizach">cfleizach</who>
    <bug_when>2013-01-08 11:26:43 -0800</bug_when>
    <thetext>(In reply to comment #2)
&gt; (From update of attachment 181714 [details])
&gt; Unofficial review.
&gt; 
&gt; View in context: https://bugs.webkit.org/attachment.cgi?id=181714&amp;action=review
&gt; 
&gt; &gt; Source/WebCore/accessibility/AccessibilityNodeObject.cpp:1196
&gt; &gt; +        if (renderer() &amp;&amp; renderer()-&gt;isMenuList())
&gt; 
&gt; This should work for elements without a renderer (like in canvas fallback content, or in a region of the page that&apos;s hidden from sighted users but has aria-hidden=false). Instead of checking renderer()-&gt;isMenuList(), check if it&apos;s a select element and if it has multiple or not. There&apos;s already similar code in this file.

i think we want this to apply for multiple and non-multiple. what do you think

&gt; 
&gt; If there are cases where a rendered popup button is different than an unrendered one, you could override it in AccessibilityRenderObject - but I don&apos;t think you need to in this case.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>802433</commentid>
    <comment_count>6</comment_count>
    <who name="Dominic Mazzoni">dmazzoni</who>
    <bug_when>2013-01-08 11:30:35 -0800</bug_when>
    <thetext>(In reply to comment #5)
&gt; &gt; This should work for elements without a renderer (like in canvas fallback content, or in a region of the page that&apos;s hidden from sighted users but has aria-hidden=false). Instead of checking renderer()-&gt;isMenuList(), check if it&apos;s a select element and if it has multiple or not. There&apos;s already similar code in this file.
&gt; 
&gt; i think we want this to apply for multiple and non-multiple. what do you think

I think you&apos;re right, but then I&apos;d like both to be covered by tests.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>802435</commentid>
    <comment_count>7</comment_count>
    <who name="chris fleizach">cfleizach</who>
    <bug_when>2013-01-08 11:32:32 -0800</bug_when>
    <thetext>(In reply to comment #6)
&gt; (In reply to comment #5)
&gt; &gt; &gt; This should work for elements without a renderer (like in canvas fallback content, or in a region of the page that&apos;s hidden from sighted users but has aria-hidden=false). Instead of checking renderer()-&gt;isMenuList(), check if it&apos;s a select element and if it has multiple or not. There&apos;s already similar code in this file.
&gt; &gt; 
&gt; &gt; i think we want this to apply for multiple and non-multiple. what do you think
&gt; 
&gt; I think you&apos;re right, but then I&apos;d like both to be covered by tests.

It looks like they are

&lt;select id=&quot;combobox1&quot;&gt;&lt;option&gt;1&lt;option selected&gt;2&lt;/select&gt;
  &lt;select multiple id=&quot;listbox1&quot;&gt;&lt;option&gt;1&lt;option selected&gt;2&lt;/select&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>802438</commentid>
    <comment_count>8</comment_count>
      <attachid>181715</attachid>
    <who name="chris fleizach">cfleizach</who>
    <bug_when>2013-01-08 11:33:47 -0800</bug_when>
    <thetext>Created attachment 181715
patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>802441</commentid>
    <comment_count>9</comment_count>
    <who name="Dominic Mazzoni">dmazzoni</who>
    <bug_when>2013-01-08 11:36:28 -0800</bug_when>
    <thetext>Looks fine to me.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>802456</commentid>
    <comment_count>10</comment_count>
    <who name="chris fleizach">cfleizach</who>
    <bug_when>2013-01-08 11:54:25 -0800</bug_when>
    <thetext>http://trac.webkit.org/changeset/139091</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>802637</commentid>
    <comment_count>11</comment_count>
    <who name="Dimitri Glazkov (Google)">dglazkov</who>
    <bug_when>2013-01-08 14:25:26 -0800</bug_when>
    <thetext>(In reply to comment #10)
&gt; http://trac.webkit.org/changeset/139091

The test is still failing across Chromium. What gives?

http://test-results.appspot.com/dashboards/flakiness_dashboard.html#showExpectations=true&amp;tests=accessibility%2Fcanvas-fallback-content-2.html</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>802644</commentid>
    <comment_count>12</comment_count>
    <who name="Ryosuke Niwa">rniwa</who>
    <bug_when>2013-01-08 14:26:37 -0800</bug_when>
    <thetext>(In reply to comment #11)
&gt; (In reply to comment #10)
&gt; &gt; http://trac.webkit.org/changeset/139091
&gt; 
&gt; The test is still failing across Chromium. What gives?
&gt; 
&gt; http://test-results.appspot.com/dashboards/flakiness_dashboard.html#showExpectations=true&amp;tests=accessibility%2Fcanvas-fallback-content-2.html

Odd. Maybe Dominic would know why?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>802881</commentid>
    <comment_count>13</comment_count>
    <who name="noel gordon">noel.gordon</who>
    <bug_when>2013-01-08 18:44:42 -0800</bug_when>
    <thetext>The failure is due to changes in ax title rendering (aka this bug and related).

combobox1
PASS document.activeElement == element1 is true1
combobox2
PASS document.activeElement == element2 is true
PASS axElement2.role is axElement1.role
PASS axElement2.roleDescription is axElement1.roleDescription
FAIL axElement2.title should be AXTitle: 2. Was AXTitle: .
PASS axElement2.description is axElement1.description
PASS axElement2.helpText is axElement1.helpText
PASS axElement2.stringValue is axElement1.stringValue
PASS axElement2.isEnabled is axElement1.isEnabled
PASS axElement2.isRequired is axElement1.isRequired
PASS axElement2.isChecked is axElement1.isChecked
PASS axElement2.intValue is axElement1.intValue
PASS axElement2.minValue is axElement1.minValue
PASS axElement2.maxValue is axElement1.maxValue</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>802883</commentid>
    <comment_count>14</comment_count>
    <who name="noel gordon">noel.gordon</who>
    <bug_when>2013-01-08 18:45:51 -0800</bug_when>
    <thetext>And the green cr-linux bubble was trying to warn you about it.

Regressions: Unexpected text-only failures (1)
  accessibility/canvas-fallback-content-2.html [ Failure ]</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>803105</commentid>
    <comment_count>15</comment_count>
      <attachid>181867</attachid>
    <who name="chris fleizach">cfleizach</who>
    <bug_when>2013-01-09 00:18:53 -0800</bug_when>
    <thetext>Created attachment 181867
patch for chromium layout test fix</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>803120</commentid>
    <comment_count>16</comment_count>
    <who name="noel gordon">noel.gordon</who>
    <bug_when>2013-01-09 01:07:21 -0800</bug_when>
    <thetext>lgtm: accessibility/canvas-fallback-content-2.html passes for me on chrome mac with this change.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>803349</commentid>
    <comment_count>17</comment_count>
    <who name="chris fleizach">cfleizach</who>
    <bug_when>2013-01-09 07:57:36 -0800</bug_when>
    <thetext>Chromium fix
http://trac.webkit.org/changeset/139195</thetext>
  </long_desc>
      
          <attachment
              isobsolete="1"
              ispatch="1"
              isprivate="0"
          >
            <attachid>181714</attachid>
            <date>2013-01-08 11:17:41 -0800</date>
            <delta_ts>2013-01-08 11:33:47 -0800</delta_ts>
            <desc>patch</desc>
            <filename>patch</filename>
            <type>text/plain</type>
            <size>1766</size>
            <attacher name="chris fleizach">cfleizach</attacher>
            
              <data encoding="base64">SW5kZXg6IFNvdXJjZS9XZWJDb3JlL0NoYW5nZUxvZwo9PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBTb3VyY2UvV2Vi
Q29yZS9DaGFuZ2VMb2cJKHJldmlzaW9uIDEzOTA4MikKKysrIFNvdXJjZS9XZWJDb3JlL0NoYW5n
ZUxvZwkod29ya2luZyBjb3B5KQpAQCAtMSwzICsxLDIwIEBACisyMDEzLTAxLTA4ICBDaHJpcyBG
bGVpemFjaCAgPGNmbGVpemFjaEBhcHBsZS5jb20+CisKKyAgICAgICAgQVg6IG5hdGl2ZSBwb3B1
cCBidXR0b25zIHNob3VsZCBub3QgdXNlIHRleHRVbmRlckVsZW1lbnQgZm9yIHRoZWlyIHRpdGxl
CisgICAgICAgIGh0dHBzOi8vYnVncy53ZWJraXQub3JnL3Nob3dfYnVnLmNnaT9pZD0xMDYzNDkK
KworICAgICAgICBSZXZpZXdlZCBieSBOT0JPRFkgKE9PUFMhKS4KKworICAgICAgICBOYXRpdmUg
cG9wdXAgYnV0dG9ucyAoPHNlbGVjdD4gZWxlbWVudHMpIHdlcmUgY2FsY3VsYXRpbmcgaXRzIHRp
dGxlIGJhc2VkIG9uIHRoZSB0ZXh0CisgICAgICAgIHVuZGVyIHRoZSBlbGVtZW50LiBXaGVuIEJ1
ZyAxMDM3OTQgaW50cm9kdWNlZCBhIG1vcmUgY29tcGxldGUgd2F5IG9mIGdldHRpbmcgcmVuZGVy
IHRleHQsCisgICAgICAgIGl0IGNhdXNlcyBwb3B1cCBidXR0b25zIHRvIHN0YXJ0IHJldHVybmlu
ZyBhIHRpdGxlLgorICAgICAgICBUaGUgZml4IGlzIHRoYXQgd2Ugc2hvdWxkIG5vdCBiZSBjYWxj
dWxhdGluZyBhIHRpdGxlIGZvciBhIG5hdGl2ZSBwb3B1cCBidXR0b24gZnJvbSBpdHMgY2hpbGRy
ZW4uCisKKyAgICAgICAgRXhpc3RpbmcgdGVzdHMgY292ZXIgdGhpcyBmdW5jdGlvbmFsaXR5LiBU
aGlzIHdpbGwgZml4IGEgZmFpbGluZyB0ZXN0LgorCisgICAgICAgICogYWNjZXNzaWJpbGl0eS9B
Y2Nlc3NpYmlsaXR5Tm9kZU9iamVjdC5jcHA6CisgICAgICAgIChXZWJDb3JlOjpBY2Nlc3NpYmls
aXR5Tm9kZU9iamVjdDo6dmlzaWJsZVRleHQpOgorCiAyMDEzLTAxLTA4ICBaYW4gRG9iZXJzZWsg
IDx6YW5kb2JlcnNla0BnbWFpbC5jb20+CiAKICAgICAgICAgW0dUS10gQnVpbGQgZmFpbHVyZXMg
d2hlbiBidWlsZGluZyB3aXRoIHB5dGhvbiAzLjMKSW5kZXg6IFNvdXJjZS9XZWJDb3JlL2FjY2Vz
c2liaWxpdHkvQWNjZXNzaWJpbGl0eU5vZGVPYmplY3QuY3BwCj09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIFNvdXJj
ZS9XZWJDb3JlL2FjY2Vzc2liaWxpdHkvQWNjZXNzaWJpbGl0eU5vZGVPYmplY3QuY3BwCShyZXZp
c2lvbiAxMzkwMDEpCisrKyBTb3VyY2UvV2ViQ29yZS9hY2Nlc3NpYmlsaXR5L0FjY2Vzc2liaWxp
dHlOb2RlT2JqZWN0LmNwcAkod29ya2luZyBjb3B5KQpAQCAtMTE5Miw2ICsxMTkyLDkgQEAKICAg
ICAKICAgICBzd2l0Y2ggKHJvbGVWYWx1ZSgpKSB7CiAgICAgY2FzZSBQb3BVcEJ1dHRvblJvbGU6
CisgICAgICAgIC8vIE5hdGl2ZSBwb3B1cCBidXR0b25zIHNob3VsZCBub3QgdXNlIHRoZWlyIGJ1
dHRvbiBjaGlsZHJlbidzIHRleHQgYXMgYSB0aXRsZS4gVGhhdCB2YWx1ZSBpcyByZXRyaWV2ZWQg
dGhyb3VnaCBzdHJpbmdWYWx1ZSgpLgorICAgICAgICBpZiAocmVuZGVyZXIoKSAmJiByZW5kZXJl
cigpLT5pc01lbnVMaXN0KCkpCisgICAgICAgICAgICBicmVhazsKICAgICBjYXNlIEJ1dHRvblJv
bGU6CiAgICAgY2FzZSBUb2dnbGVCdXR0b25Sb2xlOgogICAgIGNhc2UgQ2hlY2tCb3hSb2xlOgo=
</data>
<flag name="commit-queue"
          id="199447"
          type_id="3"
          status="-"
          setter="webkit-ews"
    />
          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>181715</attachid>
            <date>2013-01-08 11:33:47 -0800</date>
            <delta_ts>2013-01-08 11:53:07 -0800</delta_ts>
            <desc>patch</desc>
            <filename>patch</filename>
            <type>text/plain</type>
            <size>1755</size>
            <attacher name="chris fleizach">cfleizach</attacher>
            
              <data encoding="base64">SW5kZXg6IFNvdXJjZS9XZWJDb3JlL0NoYW5nZUxvZwo9PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBTb3VyY2UvV2Vi
Q29yZS9DaGFuZ2VMb2cJKHJldmlzaW9uIDEzOTA4MikKKysrIFNvdXJjZS9XZWJDb3JlL0NoYW5n
ZUxvZwkod29ya2luZyBjb3B5KQpAQCAtMSwzICsxLDIwIEBACisyMDEzLTAxLTA4ICBDaHJpcyBG
bGVpemFjaCAgPGNmbGVpemFjaEBhcHBsZS5jb20+CisKKyAgICAgICAgQVg6IG5hdGl2ZSBwb3B1
cCBidXR0b25zIHNob3VsZCBub3QgdXNlIHRleHRVbmRlckVsZW1lbnQgZm9yIHRoZWlyIHRpdGxl
CisgICAgICAgIGh0dHBzOi8vYnVncy53ZWJraXQub3JnL3Nob3dfYnVnLmNnaT9pZD0xMDYzNDkK
KworICAgICAgICBSZXZpZXdlZCBieSBOT0JPRFkgKE9PUFMhKS4KKworICAgICAgICBOYXRpdmUg
cG9wdXAgYnV0dG9ucyAoPHNlbGVjdD4gZWxlbWVudHMpIHdlcmUgY2FsY3VsYXRpbmcgaXRzIHRp
dGxlIGJhc2VkIG9uIHRoZSB0ZXh0CisgICAgICAgIHVuZGVyIHRoZSBlbGVtZW50LiBXaGVuIEJ1
ZyAxMDM3OTQgaW50cm9kdWNlZCBhIG1vcmUgY29tcGxldGUgd2F5IG9mIGdldHRpbmcgcmVuZGVy
IHRleHQsCisgICAgICAgIGl0IGNhdXNlcyBwb3B1cCBidXR0b25zIHRvIHN0YXJ0IHJldHVybmlu
ZyBhIHRpdGxlLgorICAgICAgICBUaGUgZml4IGlzIHRoYXQgd2Ugc2hvdWxkIG5vdCBiZSBjYWxj
dWxhdGluZyBhIHRpdGxlIGZvciBhIG5hdGl2ZSBwb3B1cCBidXR0b24gZnJvbSBpdHMgY2hpbGRy
ZW4uCisKKyAgICAgICAgRXhpc3RpbmcgdGVzdHMgY292ZXIgdGhpcyBmdW5jdGlvbmFsaXR5LiBU
aGlzIHdpbGwgZml4IGEgZmFpbGluZyB0ZXN0LgorCisgICAgICAgICogYWNjZXNzaWJpbGl0eS9B
Y2Nlc3NpYmlsaXR5Tm9kZU9iamVjdC5jcHA6CisgICAgICAgIChXZWJDb3JlOjpBY2Nlc3NpYmls
aXR5Tm9kZU9iamVjdDo6dmlzaWJsZVRleHQpOgorCiAyMDEzLTAxLTA4ICBaYW4gRG9iZXJzZWsg
IDx6YW5kb2JlcnNla0BnbWFpbC5jb20+CiAKICAgICAgICAgW0dUS10gQnVpbGQgZmFpbHVyZXMg
d2hlbiBidWlsZGluZyB3aXRoIHB5dGhvbiAzLjMKSW5kZXg6IFNvdXJjZS9XZWJDb3JlL2FjY2Vz
c2liaWxpdHkvQWNjZXNzaWJpbGl0eU5vZGVPYmplY3QuY3BwCj09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIFNvdXJj
ZS9XZWJDb3JlL2FjY2Vzc2liaWxpdHkvQWNjZXNzaWJpbGl0eU5vZGVPYmplY3QuY3BwCShyZXZp
c2lvbiAxMzkwMDEpCisrKyBTb3VyY2UvV2ViQ29yZS9hY2Nlc3NpYmlsaXR5L0FjY2Vzc2liaWxp
dHlOb2RlT2JqZWN0LmNwcAkod29ya2luZyBjb3B5KQpAQCAtMTE5Miw2ICsxMTkyLDkgQEAKICAg
ICAKICAgICBzd2l0Y2ggKHJvbGVWYWx1ZSgpKSB7CiAgICAgY2FzZSBQb3BVcEJ1dHRvblJvbGU6
CisgICAgICAgIC8vIE5hdGl2ZSBwb3B1cCBidXR0b25zIHNob3VsZCBub3QgdXNlIHRoZWlyIGJ1
dHRvbiBjaGlsZHJlbidzIHRleHQgYXMgYSB0aXRsZS4gVGhhdCB2YWx1ZSBpcyByZXRyaWV2ZWQg
dGhyb3VnaCBzdHJpbmdWYWx1ZSgpLgorICAgICAgICBpZiAobm9kZS0+aGFzVGFnTmFtZShzZWxl
Y3RUYWcpKQorICAgICAgICAgICAgYnJlYWs7CiAgICAgY2FzZSBCdXR0b25Sb2xlOgogICAgIGNh
c2UgVG9nZ2xlQnV0dG9uUm9sZToKICAgICBjYXNlIENoZWNrQm94Um9sZToK
</data>
<flag name="review"
          id="199448"
          type_id="1"
          status="+"
          setter="rniwa"
    />
          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>181867</attachid>
            <date>2013-01-09 00:18:53 -0800</date>
            <delta_ts>2013-01-09 01:10:32 -0800</delta_ts>
            <desc>patch for chromium layout test fix</desc>
            <filename>patch</filename>
            <type>text/plain</type>
            <size>1608</size>
            <attacher name="chris fleizach">cfleizach</attacher>
            
              <data encoding="base64">SW5kZXg6IFNvdXJjZS9XZWJDb3JlL0NoYW5nZUxvZwo9PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBTb3VyY2UvV2Vi
Q29yZS9DaGFuZ2VMb2cJKHJldmlzaW9uIDEzOTE2OSkKKysrIFNvdXJjZS9XZWJDb3JlL0NoYW5n
ZUxvZwkod29ya2luZyBjb3B5KQpAQCAtMSwzICsxLDE4IEBACisyMDEzLTAxLTA5ICBDaHJpcyBG
bGVpemFjaCAgPGNmbGVpemFjaEBhcHBsZS5jb20+CisKKyAgICAgICAgQVg6IG5hdGl2ZSBwb3B1
cCBidXR0b25zIHNob3VsZCBub3QgdXNlIHRleHRVbmRlckVsZW1lbnQgZm9yIHRoZWlyIHRpdGxl
CisgICAgICAgIGh0dHBzOi8vYnVncy53ZWJraXQub3JnL3Nob3dfYnVnLmNnaT9pZD0xMDYzNDkK
KworICAgICAgICBSZXZpZXdlZCBieSBOT0JPRFkgKE9PUFMhKS4KKworICAgICAgICBDaHJvbWl1
bSByZWxpZXMgb24gdGhlIG9sZGVyIHRpdGxlKCkgbWV0aG9kIHRvIHJldHVybiBpdHMgdGl0bGUu
IEFzIGEgcmVzdWx0LCB3ZSBhbHNvCisgICAgICAgIG5lZWQgdG8gaGFuZGxlIHRoZSBjYXNlIG9m
IDxzZWxlY3Q+IGVsZW1lbnQgcG9wIHVwIGJ1dHRvbnMgcmV0dXJuaW5nIHRoZSB0ZXh0VW5kZXJF
bGVtZW50KCkuCisKKyAgICAgICAgTm8gbmV3IHRlc3RzLiBGaXggZXhpc3RpbmcgYnJlYWsuCisK
KyAgICAgICAgKiBhY2Nlc3NpYmlsaXR5L0FjY2Vzc2liaWxpdHlOb2RlT2JqZWN0LmNwcDoKKyAg
ICAgICAgKFdlYkNvcmU6OkFjY2Vzc2liaWxpdHlOb2RlT2JqZWN0Ojp0aXRsZSk6CisKIDIwMTMt
MDEtMDggIEFycGl0YSBCYWh1Z3VuYSAgPGFycGl0YWJhaHVndW5hQGdtYWlsLmNvbT4KIAogICAg
ICAgICBDYXJldCBpcyBpbmNvcnJlY3RseSBwYWludGVkIGZvciBhIGNvbnRlbnRlZGl0YWJsZSA8
ZGl2PiBjb250YWluaW5nIGEgPGJyPiBpbiB2ZXJ0aWNhbCB3cml0aW5nIG1vZGUKSW5kZXg6IFNv
dXJjZS9XZWJDb3JlL2FjY2Vzc2liaWxpdHkvQWNjZXNzaWJpbGl0eU5vZGVPYmplY3QuY3BwCj09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT0KLS0tIFNvdXJjZS9XZWJDb3JlL2FjY2Vzc2liaWxpdHkvQWNjZXNzaWJpbGl0eU5v
ZGVPYmplY3QuY3BwCShyZXZpc2lvbiAxMzkxMjQpCisrKyBTb3VyY2UvV2ViQ29yZS9hY2Nlc3Np
YmlsaXR5L0FjY2Vzc2liaWxpdHlOb2RlT2JqZWN0LmNwcAkod29ya2luZyBjb3B5KQpAQCAtMTUx
NSw2ICsxNTE1LDkgQEAKIAogICAgIHN3aXRjaCAocm9sZVZhbHVlKCkpIHsKICAgICBjYXNlIFBv
cFVwQnV0dG9uUm9sZToKKyAgICAgICAgLy8gTmF0aXZlIHBvcHVwIGJ1dHRvbnMgc2hvdWxkIG5v
dCB1c2UgdGhlaXIgYnV0dG9uIGNoaWxkcmVuJ3MgdGV4dCBhcyBhIHRpdGxlLiBUaGF0IHZhbHVl
IGlzIHJldHJpZXZlZCB0aHJvdWdoIHN0cmluZ1ZhbHVlKCkuCisgICAgICAgIGlmIChub2RlLT5o
YXNUYWdOYW1lKHNlbGVjdFRhZykpCisgICAgICAgICAgICByZXR1cm4gU3RyaW5nKCk7CiAgICAg
Y2FzZSBCdXR0b25Sb2xlOgogICAgIGNhc2UgVG9nZ2xlQnV0dG9uUm9sZToKICAgICBjYXNlIENo
ZWNrQm94Um9sZToK
</data>
<flag name="review"
          id="199658"
          type_id="1"
          status="+"
          setter="rniwa"
    />
          </attachment>
      

    </bug>

</bugzilla>