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

Side by Side Diff: LayoutTests/fast/frames/seamless/seamless-window-location-href.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 <!DOCTYPE html>
2 <body>
3 <script src="../../../resources/js-test.js"></script>
4 <script>
5 if (window.testRunner)
6 testRunner.waitUntilDone();
7
8 window.addEventListener('message', function(evt) {
9 shouldBeEqualToString("frames[0].document.body.textContent.trim()", "DONE");
10
11 if (window.testRunner)
12 testRunner.notifyDone();
13 }, false);
14 </script>
15 <iframe srcdoc="
16 Waiting...
17 <iframe seamless
18 srcdoc='
19 <script>
20 window.location.href = &quot;resources/done.html&quot;;
21 </script>
22 '>
23 </iframe>
24 "></iframe>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698