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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/workers/semantics/navigation/001.html

Issue 2420483004: Revert of Worker: Import "imported/wpt/workers" tests (Closed)
Patch Set: Fix merge error Created 4 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
OLDNEW
(Empty)
1 <!--
2
3 /*
4 -->
5 <!doctype html>
6 <title>navigating</title>
7 <script src="/resources/testharness.js"></script>
8 <script src="/resources/testharnessreport.js"></script>
9 <div id=log></div>
10 <script>
11 var date;
12 var newDate;
13 </script>
14 <iframe></iframe>
15 <script>
16 var iframe = document.querySelector('iframe');
17 onload = function() {
18 iframe.src = "001-1.html?" + Math.random();
19 };
20 var start_test = function() {
21 window[0].document.links[0].click();
22 };
23 var after_load = function() {
24 history.back();
25 newDate = new Date();
26 setTimeout(function() {
27 assert_greater_than(Number(date), Number(newDate));
28 assert_equals(window[0].document.title, '001-1');
29 done();
30 }, 2000);
31 };
32 </script>
33 <!--
34 */
35 //-->
36
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698