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

Side by Side Diff: LayoutTests/accessibility/media-controls.html

Issue 10827333: Merge 123822 - [Chromium] Regression: Global-buffer-overflow in WebCore::mediaControlElementType (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1180/
Patch Set: Created 8 years, 4 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
« no previous file with comments | « no previous file | LayoutTests/accessibility/media-controls-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <body> 3 <body>
4 <script src="../fast/js/resources/js-test-pre.js"></script> 4 <script src="../fast/js/resources/js-test-pre.js"></script>
5 <script> 5 <script>
6 description("This tests that the script creation of an audio element with controls works when accessibility is enabled and does not crash."); 6 description("This tests that the script creation of an audio element with controls works when accessibility is enabled and does not crash.");
7 7
8 if (window.testRunner && window.accessibilityController) { 8 if (window.testRunner && window.accessibilityController) {
9 function createAudio() { 9 function createAudio() {
10 var audio = document.createElement('audio'); 10 var audio = document.createElement('audio');
11 audio.setAttribute('controls', 'controls'); 11 audio.setAttribute('controls', 'controls');
12 document.documentElement.appendChild(audio); 12 document.documentElement.appendChild(audio);
13 } 13 }
14 window.onload = createAudio; 14 window.onload = createAudio;
15 } 15 }
16 </script> 16 </script>
17 <script src="../fast/js/resources/js-test-post.js"></script> 17 <script src="../fast/js/resources/js-test-post.js"></script>
18 </body> 18 </body>
19 </html> 19 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/accessibility/media-controls-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698