[Webkit-unassigned] [Bug 16760] <object> should use fallback content on 404 response (Acid3 bug)

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jan 7 07:34:25 PST 2008


http://bugs.webkit.org/show_bug.cgi?id=16760


eric at webkit.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|Red square covers Acid3 test|<object> should use fallback
                   |in Safari                   |content on 404 response
                   |                            |(Acid3 bug)




------- Comment #4 from eric at webkit.org  2008-01-07 07:34 PDT -------
So this is the test in question:

    function () {
      // test 16: <object> handling and HTTP status codes
      var oC = document.createElement('object');
      oC.appendChild(document.createTextNode("FAIL"));
      var oB = document.createElement('object');
      var oA = document.createElement('object');
      oA.data = "support-a.png";
      oB.data = "support-b.png";
      oB.appendChild(oC);
      oC.data = "support-c.png";
      oA.appendChild(oB);
      document.getElementsByTagName("map")[0].appendChild(oA);
      // assuming the above didn'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.


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list