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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/navigation-timing/resources/blank_page_unload.html

Issue 2676573004: Import wpt@6010f54a979d242f657b284bae53c2b218c533f4 (Closed)
Patch Set: Update test expectations and baselines. Created 3 years, 10 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 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
5
6 <title>Yellow Test Page</title>
7
8 <script type="text/javascript">
9 function onbeforeunload_handler()
10 {
11 var temp = "onbeforeunload";
12 }
13
14 function onunload_handler()
15 {
16 var temp = "onunload";
17 }
18 </script>
19 </head>
20 <body onbeforeunload="onbeforeunload_handler();"
21 onunload="onunload_handler();"
22 style="background-color:#FFFF00;">
23 <h1>Unload</h1>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698