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

Side by Side Diff: LayoutTests/http/tests/workers/worker-importScriptsOnError.html

Issue 6519013: Merge 77563 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 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
1 <body> 1 <body>
2 <p>Test importScripts with error.</p> 2 <p>Test importScripts with error.</p>
3 <div id=result></div> 3 <div id=result></div>
4 <script> 4 <script>
5 function log(message) 5 function log(message)
6 { 6 {
7 document.getElementById("result").innerHTML += message + "<br>"; 7 document.getElementById("result").innerHTML += message + "<br>";
8 } 8 }
9 9
10 if (window.layoutTestController) { 10 if (window.layoutTestController) {
(...skipping 12 matching lines...) Expand all
23 properties.push('<br/>' + property + ': ' + error[property]); 23 properties.push('<br/>' + property + ': ' + error[property]);
24 } 24 }
25 properties.sort(); 25 properties.sort();
26 log(properties); 26 log(properties);
27 if (window.layoutTestController) 27 if (window.layoutTestController)
28 layoutTestController.notifyDone(); 28 layoutTestController.notifyDone();
29 } 29 }
30 </script> 30 </script>
31 </body> 31 </body>
32 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698