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

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

Issue 15159008: Node::lazyAttach shouldn't lie about being attached (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase again Created 7 years, 7 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 }
5 </script> 13 </script>
6 <body> 14 <body>
7 <object type="image/png" data="this.object.does.not.exist.dtd"> 15 <object type="image/png" data="this.object.does.not.exist.dtd">
8 <object type="image/png" data="this.object.does.not.exist.dtd"> 16 <object type="image/png" data="this.object.does.not.exist.dtd">
9 <object type="image/png" data="this.object.does.not.exist.dtd">P ASS when no crash occurs.</object> 17 <object type="image/png" data="this.object.does.not.exist.dtd" o nerror="finish()">PASS when no crash occurs.</object>
10 </object> 18 </object>
11 </object> 19 </object>
12 </body> 20 </body>
13 </html> 21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698