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

Side by Side Diff: LayoutTests/http/tests/misc/execute-and-return-value.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <script> 4 <script>
5 if (window.testRunner) { 5 if (window.testRunner) {
6 testRunner.dumpAsText(); 6 testRunner.dumpAsText();
7 7
8 var intTest = testRunner.evaluateScriptInIsolatedWorldAndReturnValue(0, "5"); 8 var intTest = testRunner.evaluateScriptInIsolatedWorldAndReturnValue(0, "5");
9 document.body.appendChild(document.createTextNode('Expecting 5: ' + intTest)); 9 document.body.appendChild(document.createTextNode('Expecting 5: ' + intTest));
10 document.body.appendChild(document.createElement('br')); 10 document.body.appendChild(document.createElement('br'));
(...skipping 10 matching lines...) Expand all
21 document.body.appendChild(document.createTextNode('Expecting false: ' + boolea nTest)); 21 document.body.appendChild(document.createTextNode('Expecting false: ' + boolea nTest));
22 document.body.appendChild(document.createElement('br')); 22 document.body.appendChild(document.createElement('br'));
23 23
24 var nullTest = testRunner.evaluateScriptInIsolatedWorldAndReturnValue(0, "null "); 24 var nullTest = testRunner.evaluateScriptInIsolatedWorldAndReturnValue(0, "null ");
25 document.body.appendChild(document.createTextNode('Expecting null: ' + nullTes t)); 25 document.body.appendChild(document.createTextNode('Expecting null: ' + nullTes t));
26 document.body.appendChild(document.createElement('br')); 26 document.body.appendChild(document.createElement('br'));
27 } 27 }
28 </script> 28 </script>
29 </body> 29 </body>
30 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698