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

Side by Side Diff: LayoutTests/fast/frames/seamless/seamless-nested-crash.html

Issue 138443013: Remove iframe@seamless (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Include remove tests Created 6 years, 11 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 <html>
2 <head>
3 <script>
4 if (window.testRunner) {
5 testRunner.dumpAsText();
6 testRunner.waitUntilDone();
7 }
8 if (window.eventSender)
9 for (i=0; i<10; i++)
10 setTimeout('eventSender.mouseMoveTo(' + i + ', ' + i + ');', i);
11 setTimeout(function() {
12 document.body.innerHTML = "This test passes if it does not crash.";
13 if (window.testRunner)
14 testRunner.notifyDone();
15 }, 10);
16 </script>
17 <style>
18 @font-face { font-family: "A"; src: url(); }
19 * { font-family: A; }
20 </style>
21 </head>
22 <body>
23 <!-- Multiple lines of text are needed to crash -->
24 This is a really long line. This is a really long line. This is a really lon g line. This is a really long line. This is a really long line. This is a really long line. This is a really long line. This is a really long line. This is a re ally long line. This is a really long line. This is a really long line. This is a really long line. This is a really long line.
25 <iframe seamless src="resources/nested-seamless.html"></iframe>
26 <!-- This lonely <style> is needed to crash -->
27 <style>
28 </style>
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698