<?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>16760</bug_id>
          
          <creation_ts>2008-01-05 19:17:13 -0800</creation_ts>
          <short_desc>Incorrect handling of &lt;object&gt; data MIME types  (affects Acid3)</short_desc>
          <delta_ts>2008-02-20 18:00:25 -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>All</rep_platform>
          <op_sys>All</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc>http://acid3.acidtests.org/</bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>HasReduction</keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          <blocked>17064</blocked>
          <everconfirmed>1</everconfirmed>
          <reporter name="Eric Seidel (no email)">eric</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>gavin.sharp</cc>
    
    <cc>julian.reschke</cc>
    
    <cc>jwalden+bwo</cc>
    
    <cc>webkit</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>66331</commentid>
    <comment_count>0</comment_count>
    <who name="Eric Seidel (no email)">eric</who>
    <bug_when>2008-01-05 19:17:13 -0800</bug_when>
    <thetext>Red square covers Acid3 test in Safari

http://www.hixie.ch/tests/evil/acid/003/NOT_READY_PLEASE_DO_NOT_USE.html

I&apos;m not even entirely sure what the red square is.  I think it&apos;s the &lt;map&gt;. The inspector wasn&apos;t very helpful due to bug 16755.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>66332</commentid>
    <comment_count>1</comment_count>
    <who name="Eric Seidel (no email)">eric</who>
    <bug_when>2008-01-05 19:17:53 -0800</bug_when>
    <thetext>I will note that neither Opera or FF display the red square.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>66363</commentid>
    <comment_count>2</comment_count>
    <who name="Eric Seidel (no email)">eric</who>
    <bug_when>2008-01-06 00:31:46 -0800</bug_when>
    <thetext>FYI the red square is from the &lt;object&gt; element, which has this CSS:

object { position: fixed; left: 130.5px; top: 84.3px; background:
transparent; } /* show objects if they have content */

Hixie made a comment in IRC about this begin a test of &lt;object&gt; Content-Type support.

Looking at the sent headers:

curl -I &quot;http://www.hixie.ch/tests/evil/acid/003/support-a.png&quot;
HTTP/1.1 404 Not Found
Date: Sun, 06 Jan 2008 08:29:39 GMT
Server: Apache/2.0.61 (Unix) PHP/4.4.7 mod_ssl/2.0.61 OpenSSL/0.9.7e mod_fastcgi/2.4.2 DAV/2 SVN/1.4.2
Last-Modified: Thu, 01 Jun 2006 06:09:43 GMT
ETag: &quot;13bef5e-908-839d37c0&quot;
Accept-Ranges: bytes
Content-Length: 2312
X-Pingback: http://tracking.damowmow.com/
Content-Language: en-GB-x-Hixie
Content-Type: image/png

I guess the issue there is the 404 which we&apos;re not respecting?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>66373</commentid>
    <comment_count>3</comment_count>
    <who name="Julian Reschke">julian.reschke</who>
    <bug_when>2008-01-06 07:01:26 -0800</bug_when>
    <thetext>One could argue that the 404 response itself should be fixed.

For instance, why would a server claim there is no representation (404) and then include an ETag???
</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>66454</commentid>
    <comment_count>4</comment_count>
    <who name="Eric Seidel (no email)">eric</who>
    <bug_when>2008-01-07 07:34:24 -0800</bug_when>
    <thetext>So this is the test in question:

    function () {
      // test 16: &lt;object&gt; handling and HTTP status codes
      var oC = document.createElement(&apos;object&apos;);
      oC.appendChild(document.createTextNode(&quot;FAIL&quot;));
      var oB = document.createElement(&apos;object&apos;);
      var oA = document.createElement(&apos;object&apos;);
      oA.data = &quot;support-a.png&quot;;
      oB.data = &quot;support-b.png&quot;;
      oB.appendChild(oC);
      oC.data = &quot;support-c.png&quot;;
      oA.appendChild(oB);
      document.getElementsByTagName(&quot;map&quot;)[0].appendChild(oA);
      // assuming the above didn&apos;t raise any exceptions, this test has passed
      // (the real test is whether the rendering is correct)
      return 1;
    },

http://www.hixie.ch/tests/evil/acid/003/support-a.png // gives a 404
http://www.hixie.ch/tests/evil/acid/003/support-b.png // returns wrong content type
http://www.hixie.ch/tests/evil/acid/003/support-c.png // returns identical to a, (including Etag), but but returns 200 instead of 404.
</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>67259</commentid>
    <comment_count>5</comment_count>
    <who name="Eric Seidel (no email)">eric</who>
    <bug_when>2008-01-14 16:04:38 -0800</bug_when>
    <thetext>This is at least related to bug 15242, possibly even dependent on.  It wasn&apos;t clear to me from my brief trip through the FrameLoader code over the weekend, how we recognize 404s down in WebCore.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>68102</commentid>
    <comment_count>6</comment_count>
    <who name="Eric Seidel (no email)">eric</who>
    <bug_when>2008-01-24 00:49:39 -0800</bug_when>
    <thetext>If we&apos;re to implement this the way Mark started to, then we&apos;ll need to add a new callback to CachedResourceClient.  It could even be as specific as respondedWithError() or similar.  Hooking into the notifyFinished() callback would be too late, since who knows, the 404 page could be 10mb and there is no need to download the whole page only to trip over into &lt;object&gt; fallback (or ignore the CachedStyleSheet)</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>68385</commentid>
    <comment_count>7</comment_count>
      <attachid>18724</attachid>
    <who name="Robert Blaut">webkit</who>
    <bug_when>2008-01-27 15:09:12 -0800</bug_when>
    <thetext>Created attachment 18724
Minimal test case</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>69400</commentid>
    <comment_count>8</comment_count>
    <who name="Dave Hyatt">hyatt</who>
    <bug_when>2008-02-04 15:03:46 -0800</bug_when>
    <thetext>We do respect 404s on object fallback.   That was required for Acid2.  I think the issue is with the middle PNG (the one with the wrong content type).  I&apos;m not sure what&apos;s going on though.

</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>69402</commentid>
    <comment_count>9</comment_count>
    <who name="Dave Hyatt">hyatt</who>
    <bug_when>2008-02-04 15:06:47 -0800</bug_when>
    <thetext>I don&apos;t understand what is wrong with support-c.png.  I also don&apos;t understand why support-b.png would not be used.  Shouldn&apos;t it be used?


</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>69403</commentid>
    <comment_count>10</comment_count>
    <who name="Dave Hyatt">hyatt</who>
    <bug_when>2008-02-04 15:07:36 -0800</bug_when>
    <thetext>Aha, I get it.  support-b.png should be honored as text/html (and thus render nothing).  This test is exposing the problems with not honoring the true content type of the data.

</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>69438</commentid>
    <comment_count>11</comment_count>
      <attachid>18927</attachid>
    <who name="Robert Blaut">webkit</who>
    <bug_when>2008-02-04 23:09:02 -0800</bug_when>
    <thetext>Created attachment 18927
Standalone test case from Acid 3 suite</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>69439</commentid>
    <comment_count>12</comment_count>
      <attachid>18928</attachid>
    <who name="Robert Blaut">webkit</who>
    <bug_when>2008-02-04 23:09:48 -0800</bug_when>
    <thetext>Created attachment 18928
Static test case from Acid3 suite</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>69440</commentid>
    <comment_count>13</comment_count>
      <attachid>18929</attachid>
    <who name="Robert Blaut">webkit</who>
    <bug_when>2008-02-04 23:11:38 -0800</bug_when>
    <thetext>Created attachment 18929
test case with all 3 cases separated</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>69442</commentid>
    <comment_count>14</comment_count>
    <who name="Robert Blaut">webkit</who>
    <bug_when>2008-02-04 23:17:55 -0800</bug_when>
    <thetext>Dave, based on &quot;test case with all 3 cases separated&quot; it&apos;s clear that Webkit has a problem only with support-a.png and support-b.png. 

support-c.png is correct, and should be displayed, but in Acid3 this picture is covered by &quot;blank&quot; support-b.png.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>69444</commentid>
    <comment_count>15</comment_count>
      <attachid>18931</attachid>
    <who name="Robert Blaut">webkit</who>
    <bug_when>2008-02-04 23:27:43 -0800</bug_when>
    <thetext>Created attachment 18931
test case with all 3 cases separated

some issues in test case corrected.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>69465</commentid>
    <comment_count>16</comment_count>
      <attachid>18935</attachid>
    <who name="Robert Blaut">webkit</who>
    <bug_when>2008-02-05 05:24:44 -0800</bug_when>
    <thetext>Created attachment 18935
test for treating text/html file as CSS file

Another test from Acid3 (a word Acid3 should not be red). It shows that Webkit treats text/html file as text/css and incorrectly applies styles from it to current document.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>69466</commentid>
    <comment_count>17</comment_count>
    <who name="Robert Blaut">webkit</who>
    <bug_when>2008-02-05 05:30:29 -0800</bug_when>
    <thetext>I wonder if the last test case should be filed on separate bug report? However the main problem relies on incorrectly handling MIME types and HTTP status codes.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>71319</commentid>
    <comment_count>18</comment_count>
    <who name="Robert Blaut">webkit</who>
    <bug_when>2008-02-20 15:01:47 -0800</bug_when>
    <thetext>*** Bug 16690 has been marked as a duplicate of this bug. ***</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>71321</commentid>
    <comment_count>19</comment_count>
    <who name="Robert Blaut">webkit</who>
    <bug_when>2008-02-20 15:04:30 -0800</bug_when>
    <thetext>Another variant of the issue: http://biesi.damowmow.com/object/011.html</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>71322</commentid>
    <comment_count>20</comment_count>
    <who name="Robert Blaut">webkit</who>
    <bug_when>2008-02-20 15:08:10 -0800</bug_when>
    <thetext>Many various tests for &lt;object&gt; MIME type handling are available on: http://biesi.damowmow.com/object/</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>71336</commentid>
    <comment_count>21</comment_count>
    <who name="Dave Hyatt">hyatt</who>
    <bug_when>2008-02-20 18:00:25 -0800</bug_when>
    <thetext>Fixed in r30438.

</thetext>
  </long_desc>
      
          <attachment
              isobsolete="0"
              ispatch="0"
              isprivate="0"
          >
            <attachid>18724</attachid>
            <date>2008-01-27 15:09:12 -0800</date>
            <delta_ts>2008-01-27 15:09:12 -0800</delta_ts>
            <desc>Minimal test case</desc>
            <filename>bug-16760-minimal-test-case.html</filename>
            <type>text/html</type>
            <size>315</size>
            <attacher name="Robert Blaut">webkit</attacher>
            
              <data encoding="base64">PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMDEvL0VOIiAiaHR0cDov
L3d3dy53My5vcmcvVFIvaHRtbDQvc3RyaWN0LmR0ZCI+CjxodG1sPgo8aGVhZD4KPHRpdGxlPk9C
SkVDVCA0MDQgZmFsbGJhY2sgY29udGVudCB0ZXN0PC90aXRsZT4KPC9oZWFkPgo8Ym9keT4KPHA+
VGhlcmUgc2hvdWxkIGJlIG5vIFJFRCBvbiB0aGUgcGFnZTwvcD4KPHA+PG9iamVjdCBkYXRhPSJo
dHRwOi8vd3d3LmhpeGllLmNoL3Rlc3RzL2V2aWwvYWNpZC8wMDMvc3VwcG9ydC1hLnBuZyI+UEFT
Uzwvb2JqZWN0PjwvcD4KPC9ib2R5Pgo8L2h0bWw+
</data>

          </attachment>
          <attachment
              isobsolete="0"
              ispatch="0"
              isprivate="0"
          >
            <attachid>18927</attachid>
            <date>2008-02-04 23:09:02 -0800</date>
            <delta_ts>2008-02-04 23:09:02 -0800</delta_ts>
            <desc>Standalone test case from Acid 3 suite</desc>
            <filename>test-case-object-handling-js.html</filename>
            <type>text/html</type>
            <size>773</size>
            <attacher name="Robert Blaut">webkit</attacher>
            
              <data encoding="base64">PCFET0NUWVBFIGh0bWw+CjxodG1sPgo8aGVhZD4KCTx0aXRsZT5EeW5hbWljIHRlc3QgZm9yIE9C
SkVDVCBoYW5kbGluZyBhbmQgSFRUUCBzdGF0dXMgY29kZXM8L3RpdGxlPgo8L2hlYWQ+Cjxib2R5
Pgo8ZGl2PjwvZGl2Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCI+CiAgIC8vIHRlc3Q6
IDxvYmplY3Q+IGhhbmRsaW5nIGFuZCBIVFRQIHN0YXR1cyBjb2RlcwogICAgICB2YXIgb0MgPSBk
b2N1bWVudC5jcmVhdGVFbGVtZW50KCdvYmplY3QnKTsKICAgICAgb0MuYXBwZW5kQ2hpbGQoZG9j
dW1lbnQuY3JlYXRlVGV4dE5vZGUoIkZBSUwiKSk7CiAgICAgIHZhciBvQiA9IGRvY3VtZW50LmNy
ZWF0ZUVsZW1lbnQoJ29iamVjdCcpOwogICAgICB2YXIgb0EgPSBkb2N1bWVudC5jcmVhdGVFbGVt
ZW50KCdvYmplY3QnKTsKICAgICAgb0EuZGF0YSA9ICJodHRwOi8vd3d3LmhpeGllLmNoL3Rlc3Rz
L2V2aWwvYWNpZC8wMDMvc3VwcG9ydC1hLnBuZyI7CiAgICAgIG9CLmRhdGEgPSAiaHR0cDovL3d3
dy5oaXhpZS5jaC90ZXN0cy9ldmlsL2FjaWQvMDAzL3N1cHBvcnQtYi5wbmciOwogICAgICBvQi5h
cHBlbmRDaGlsZChvQyk7CiAgICAgIG9DLmRhdGEgPSAiaHR0cDovL3d3dy5oaXhpZS5jaC90ZXN0
cy9ldmlsL2FjaWQvMDAzL3N1cHBvcnQtYy5wbmciOwogICAgICBvQS5hcHBlbmRDaGlsZChvQik7
CiAgICAgIGRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKCJkaXYiKVswXS5hcHBlbmRDaGls
ZChvQSk7Cjwvc2NyaXB0Pgo8L2JvZHk+CjwvaHRtbD4=
</data>

          </attachment>
          <attachment
              isobsolete="0"
              ispatch="0"
              isprivate="0"
          >
            <attachid>18928</attachid>
            <date>2008-02-04 23:09:48 -0800</date>
            <delta_ts>2008-02-04 23:09:48 -0800</delta_ts>
            <desc>Static test case from Acid3 suite</desc>
            <filename>test-case-object-handling.html</filename>
            <type>text/html</type>
            <size>376</size>
            <attacher name="Robert Blaut">webkit</attacher>
            
              <data encoding="base64">PCFET0NUWVBFIGh0bWw+CjxodG1sPgo8aGVhZD4KCTx0aXRsZT5UZXN0IGZvciBPQkpFQ1QgaGFu
ZGxpbmcgYW5kIEhUVFAgc3RhdHVzIGNvZGVzPC90aXRsZT4KPC9oZWFkPgo8Ym9keT4KPG9iamVj
dCBkYXRhPSJodHRwOi8vd3d3LmhpeGllLmNoL3Rlc3RzL2V2aWwvYWNpZC8wMDMvc3VwcG9ydC1h
LnBuZyI+Cgk8b2JqZWN0IGRhdGE9Imh0dHA6Ly93d3cuaGl4aWUuY2gvdGVzdHMvZXZpbC9hY2lk
LzAwMy9zdXBwb3J0LWIucG5nIj4KCQk8b2JqZWN0IGRhdGE9Imh0dHA6Ly93d3cuaGl4aWUuY2gv
dGVzdHMvZXZpbC9hY2lkLzAwMy9zdXBwb3J0LWMucG5nIj4KCQkJRkFJTAoJCTwvb2JqZWN0PgoJ
PG9iamVjdD4KPC9vYmplY3Q+CjwvYm9keT4KPC9odG1sPg==
</data>

          </attachment>
          <attachment
              isobsolete="1"
              ispatch="0"
              isprivate="0"
          >
            <attachid>18929</attachid>
            <date>2008-02-04 23:11:38 -0800</date>
            <delta_ts>2008-02-04 23:27:43 -0800</delta_ts>
            <desc>test case with all 3 cases separated</desc>
            <filename>minimal-test-case.html</filename>
            <type>text/html</type>
            <size>801</size>
            <attacher name="Robert Blaut">webkit</attacher>
            
              <data encoding="base64">PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMDEvL0VOIiAiaHR0cDov
L3d3dy53My5vcmcvVFIvaHRtbDQvc3RyaWN0LmR0ZCI+CjxodG1sPgo8aGVhZD4KPHRpdGxlPk9C
SkVDVCA0MDQgZmFsbGJhY2sgY29udGVudCB0ZXN0PC90aXRsZT4KPC9oZWFkPgo8Ym9keT4KPGRp
diBzdHlsZT0iYm9yZGVyOjFweCBzb2xpZCBibHVlOyBtYXJnaW46IDFlbTsiPgo8cD5UZXN0IDE6
IHlvdSBzaG91bGQgc2VlIFBBU1Mgd29yZCBiZWxvdzwvcD4KPHA+PG9iamVjdCBkYXRhPSJodHRw
Oi8vd3d3LmhpeGllLmNoL3Rlc3RzL2V2aWwvYWNpZC8wMDMvc3VwcG9ydC1hLnBuZyI+UEFTUzwv
b2JqZWN0PjwvcD4KPC9kaXY+CjxkaXYgc3R5bGU9ImJvcmRlcjoxcHggc29saWQgYmx1ZTsgbWFy
Z2luOiAxZW07Ij4KPHA+VGVzdCAyOiB5b3Ugc2hvdWxkIHNlZSBibGFuayBzcGFjZSBiZWxvdyAo
d2l0aG91dCBpbWFnZSBwbGFjZWhvbGRlciEpPC9wPgo8cD48b2JqZWN0IGRhdGE9Imh0dHA6Ly93
d3cuaGl4aWUuY2gvdGVzdHMvZXZpbC9hY2lkLzAwMy9zdXBwb3J0LWIucG5nIj48L29iamVjdD48
L3A+CjwvZGl2Pgo8ZGl2IHN0eWxlPSJib3JkZXI6MXB4IHNvbGlkIGJsdWU7IG1hcmdpbjogMWVt
OyI+CjxwPlRlc3QgMjogeW91IHNob3VsZCBzZWUgYSBmYWNlIG9mIGNhdCBvbiByZWQgYmFja2dy
b3VuZDwvcD4KPHA+PG9iamVjdCBkYXRhPSJodHRwOi8vd3d3LmhpeGllLmNoL3Rlc3RzL2V2aWwv
YWNpZC8wMDMvc3VwcG9ydC1jLnBuZyI+PC9vYmplY3Q+PC9wPgo8L2Rpdj4KPC9ib2R5Pgo8L2h0
bWw+
</data>

          </attachment>
          <attachment
              isobsolete="0"
              ispatch="0"
              isprivate="0"
          >
            <attachid>18931</attachid>
            <date>2008-02-04 23:27:43 -0800</date>
            <delta_ts>2008-02-04 23:27:43 -0800</delta_ts>
            <desc>test case with all 3 cases separated</desc>
            <filename>test-case-object-handling-1.html</filename>
            <type>text/html</type>
            <size>809</size>
            <attacher name="Robert Blaut">webkit</attacher>
            
              <data encoding="base64">PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMDEvL0VOIiAiaHR0cDov
L3d3dy53My5vcmcvVFIvaHRtbDQvc3RyaWN0LmR0ZCI+CjxodG1sPgo8aGVhZD4KPHRpdGxlPk9C
SkVDVCA0MDQgZmFsbGJhY2sgY29udGVudCB0ZXN0PC90aXRsZT4KPC9oZWFkPgo8Ym9keT4KPGRp
diBzdHlsZT0iYm9yZGVyOjFweCBzb2xpZCBibHVlOyBtYXJnaW46IDFlbTsiPgo8cD5UZXN0IDE6
IHlvdSBzaG91bGQgc2VlIFBBU1Mgd29yZCBiZWxvdzwvcD4KPHA+PG9iamVjdCBkYXRhPSJodHRw
Oi8vd3d3LmhpeGllLmNoL3Rlc3RzL2V2aWwvYWNpZC8wMDMvc3VwcG9ydC1hLnBuZyI+UEFTUzwv
b2JqZWN0PjwvcD4KPC9kaXY+CjxkaXYgc3R5bGU9ImJvcmRlcjoxcHggc29saWQgYmx1ZTsgbWFy
Z2luOiAxZW07Ij4KPHA+VGVzdCAyOiB5b3Ugc2hvdWxkIHNlZSBibGFuayBzcGFjZSBiZWxvdyAo
d2l0aG91dCBpbWFnZSBwbGFjZWhvbGRlciEpPC9wPgo8cD48b2JqZWN0IGRhdGE9Imh0dHA6Ly93
d3cuaGl4aWUuY2gvdGVzdHMvZXZpbC9hY2lkLzAwMy9zdXBwb3J0LWIucG5nIj5GQUlMPC9vYmpl
Y3Q+PC9wPgo8L2Rpdj4KPGRpdiBzdHlsZT0iYm9yZGVyOjFweCBzb2xpZCBibHVlOyBtYXJnaW46
IDFlbTsiPgo8cD5UZXN0IDM6IHlvdSBzaG91bGQgc2VlIGEgZmFjZSBvZiBjYXQgb24gcmVkIGJh
Y2tncm91bmQ8L3A+CjxwPjxvYmplY3QgZGF0YT0iaHR0cDovL3d3dy5oaXhpZS5jaC90ZXN0cy9l
dmlsL2FjaWQvMDAzL3N1cHBvcnQtYy5wbmciPkZBSUw8L29iamVjdD48L3A+CjwvZGl2Pgo8L2Jv
ZHk+CjwvaHRtbD4=
</data>

          </attachment>
          <attachment
              isobsolete="0"
              ispatch="0"
              isprivate="0"
          >
            <attachid>18935</attachid>
            <date>2008-02-05 05:24:44 -0800</date>
            <delta_ts>2008-02-05 05:24:44 -0800</delta_ts>
            <desc>test for treating text/html file as CSS file</desc>
            <filename>test-case.html</filename>
            <type>text/html</type>
            <size>355</size>
            <attacher name="Robert Blaut">webkit</attacher>
            
              <data encoding="base64">PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMDEvL0VOIiAiaHR0cDov
L3d3dy53My5vcmcvVFIvaHRtbDQvc3RyaWN0LmR0ZCI+CjxodG1sPgo8aGVhZD4KCTx0aXRsZT5U
ZXN0IGNhc2UgZm9yIGJ1ZyAxNjc2MDwvdGl0bGU+Cgk8bGluayByZWw9InN0eWxlc2hlZXQiIGhy
ZWY9Imh0dHA6Ly9hY2lkMy5hY2lkdGVzdHMub3JnL2VtcHR5LmNzcyI+PCEtLSB0ZXh0L2h0bWwg
ZmlsZSAoc2hvdWxkIGJlIGlnbm9yZWQsIDxoMT4gd2lsbCBnbyByZWQgaWYgaXQgaXNuJ3QpIC0t
Pgo8L2hlYWQ+Cjxib2R5PgoJPGgxPlRoaXMgdGV4dCBzaG91bGQgTk9UIGJlIFJFRDwvaDE+Cjwv
Ym9keT4KPC9odG1sPg==
</data>

          </attachment>
      

    </bug>

</bugzilla>