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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/element-attribute-js-null.html

Issue 1947033002: Change "invalid value default" for HTMLTrackElement 'kind' to "metadata" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 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 | third_party/WebKit/LayoutTests/fast/dom/element-attribute-js-null-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 <html> 1 <html>
2 <head> 2 <head>
3 <style type="text/css"> 3 <style type="text/css">
4 .pass { color: green; } 4 .pass { color: green; }
5 .fail { color: red; } 5 .fail { color: red; }
6 </style> 6 </style>
7 <script> 7 <script>
8 function printOut(msg) 8 function printOut(msg)
9 { 9 {
10 var console = document.getElementById("console"); 10 var console = document.getElementById("console");
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after
646 type: 'HTMLTitleElement', 646 type: 'HTMLTitleElement',
647 elementToUse: document.createElement('title'), 647 elementToUse: document.createElement('title'),
648 attributes: [ 648 attributes: [
649 {name: 'text', expectedNull: 'null'} 649 {name: 'text', expectedNull: 'null'}
650 ] 650 ]
651 }, 651 },
652 { 652 {
653 type: 'HTMLTrackElement', 653 type: 'HTMLTrackElement',
654 elementToUse: document.createElement('track'), 654 elementToUse: document.createElement('track'),
655 attributes: [ 655 attributes: [
656 {name: 'kind', expectedNull: 'subtitles'}, 656 {name: 'kind', expectedNull: 'metadata'},
657 {name: 'label', expectedNull: 'null'}, 657 {name: 'label', expectedNull: 'null'},
658 {name: 'src', expectedNull: 'null', isUrl: true}, 658 {name: 'src', expectedNull: 'null', isUrl: true},
659 {name: 'srclang', expectedNull: 'null'} 659 {name: 'srclang', expectedNull: 'null'}
660 ] 660 ]
661 }, 661 },
662 { 662 {
663 type: 'HTMLUListElement', 663 type: 'HTMLUListElement',
664 elementToUse: document.createElement('ul'), 664 elementToUse: document.createElement('ul'),
665 attributes: [ 665 attributes: [
666 {name: 'type', expectedNull: 'null'} 666 {name: 'type', expectedNull: 'null'}
(...skipping 20 matching lines...) Expand all
687 printOut(''); 687 printOut('');
688 } 688 }
689 } 689 }
690 </script> 690 </script>
691 </head> 691 </head>
692 <body onload="runTests()"> 692 <body onload="runTests()">
693 <p>This test setting various attributes of a elements to JavaScript null.</p > 693 <p>This test setting various attributes of a elements to JavaScript null.</p >
694 <div id="console"></div> 694 <div id="console"></div>
695 </body> 695 </body>
696 </html> 696 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/dom/element-attribute-js-null-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698