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

Side by Side Diff: webkit/data/layout_tests/chrome/fast/dom/no-init-context-in-access-check.html

Issue 55025: Remove tests that have been upstreamed. Update test_expectations list... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 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 <script>
3 if (window.layoutTestController) {
4 layoutTestController.dumpAsText();
5 layoutTestController.waitUntilDone();
6 }
7
8 var target;
9 function check_blank() {
10 var x = target.location.private;
11 if (window.layoutTestController)
12 layoutTestController.notifyDone();
13 }
14
15 function reload_blank() {
16 target = window.frames[0];
17 target.location = "about:blank";
18 window.setTimeout("check_blank()", 100);
19 }
20
21 window.setTimeout("reload_blank()", 100);
22
23 </script>
24 <body>
25 The test passes if Chrome does not crash. See issue 1117082.
26 <br>
27 <iframe src="about:blank"></iframe>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698