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

Side by Side Diff: LayoutTests/fast/dom/ImageDocument-image-deletion.html

Issue 561813003: Prepare blink to unify definitions of load completion (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add document.close() to scroll-left-while-loading.html Created 6 years, 2 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
(Empty)
1 <head>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5
6 function test()
7 {
8 var f = document.getElementById("frame");
9 f.contentDocument.open();
10 f.contentDocument.close();
11 }
12 </script>
13 </head>
14 <body onload="test()">
15 <p>
16 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=16097">http: //bugs.webkit.org/show_bug.cgi?id=16097</a>
17 Safari crashes during load of LexisNexis search results</i>.
18 </p>
19 <p>
20 Testing that destroying the image element in a standalone image
21 document does not lead to a crash.
22 </p>
23 <iframe src="resources/apple.gif" id="frame"></iframe>
24 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698