Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: trunk/LayoutTests/fast/html/object-image-nested-fallback.html

Issue 16336010: Revert 150924 "Node::lazyAttach shouldn't lie about being attached" (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <script> 2 <script>
3 if (window.testRunner) { 3 if (window.testRunner)
4 testRunner.dumpAsText(); 4 testRunner.dumpAsText();
5 testRunner.waitUntilDone();
6 }
7
8 function finish()
9 {
10 if (window.testRunner)
11 testRunner.notifyDone();
12 }
13 </script> 5 </script>
14 <body> 6 <body>
15 <object type="image/png" data="this.object.does.not.exist.dtd"> 7 <object type="image/png" data="this.object.does.not.exist.dtd">
16 <object type="image/png" data="this.object.does.not.exist.dtd"> 8 <object type="image/png" data="this.object.does.not.exist.dtd">
17 <object type="image/png" data="this.object.does.not.exist.dtd" o nerror="finish()">PASS when no crash occurs.</object> 9 <object type="image/png" data="this.object.does.not.exist.dtd">P ASS when no crash occurs.</object>
18 </object> 10 </object>
19 </object> 11 </object>
20 </body> 12 </body>
21 </html> 13 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698