test_performance_paint_observer.html (1279B)
1 <!-- 2 Any copyright is dedicated to the Public Domain. 3 http://creativecommons.org/publicdomain/zero/1.0/ 4 --> 5 <!DOCTYPE HTML> 6 <html> 7 <!-- 8 https://bugzilla.mozilla.org/show_bug.cgi?id=1518999 9 --> 10 <head> 11 <title>Test for Bug 1518999 (Observer API) </title> 12 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 13 <script src="/tests/SimpleTest/SimpleTest.js"></script> 14 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> 15 </head> 16 <body> 17 <a target="_blank" 18 href="https://bugzilla.mozilla.org/show_bug.cgi?id=1518999">Mozilla 19 Bug 1518999 - Paint Timing API For Observers</a> 20 <p id="display"></p> 21 <div id="content" style="display: none"> 22 <pre id="test"> 23 <script class="testbody" type="text/javascript"> 24 let tab; 25 function runTest() { 26 tab = window.open("test_performance_paint_observer_helper.html"); 27 } 28 29 function done() { 30 tab.close(); 31 SimpleTest.finish(); 32 } 33 34 SimpleTest.waitForExplicitFinish(); 35 addLoadEvent(runTest); 36 </script> 37 </pre> 38 </div> 39 </body> 40 </html>