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

Side by Side Diff: LayoutTests/media/media-controls-clone-crash.html

Issue 216933006: Remove carriage returns from LayoutTests (18) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Expectations Created 6 years, 9 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 <html> 1 <html>
2 <body onload="runTest();"> 2 <body onload="runTest();">
3 Test passes if it does not crash. 3 Test passes if it does not crash.
4 <script> 4 <script>
5 if (window.testRunner) 5 if (window.testRunner)
6 { 6 {
7 testRunner.dumpAsText(); 7 testRunner.dumpAsText();
8 testRunner.waitUntilDone(); 8 testRunner.waitUntilDone();
9 } 9 }
10 10
11 function runTest() { 11 function runTest() {
12 node = document.createElement('audio'); 12 node = document.createElement('audio');
13 node.setAttribute('src', 'foo'); 13 node.setAttribute('src', 'foo');
14 node.setAttribute('controls', 'foo'); 14 node.setAttribute('controls', 'foo');
15 node.style.fontWeight = '100'; 15 node.style.fontWeight = '100';
16 var clone = node.cloneNode(false); 16 var clone = node.cloneNode(false);
17 clone.load(); 17 clone.load();
18 18
19 if (window.testRunner) 19 if (window.testRunner)
20 setTimeout("testRunner.notifyDone()", 0); 20 setTimeout("testRunner.notifyDone()", 0);
21 } 21 }
22 </script> 22 </script>
23 </body> 23 </body>
24 </html> 24 </html>
25 25
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698