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

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

Issue 98893003: Remove TreatNullAs=NullString for HTMLMarqueeElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years 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
« no previous file with comments | « no previous file | 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 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 {name: 'type', expectedNull: 'null'} 409 {name: 'type', expectedNull: 'null'}
410 ] 410 ]
411 }, 411 },
412 { 412 {
413 type: 'HTMLMapElement', 413 type: 'HTMLMapElement',
414 elementToUse: document.createElement('map'), 414 elementToUse: document.createElement('map'),
415 attributes: [ 415 attributes: [
416 {name: 'name', expectedNull: 'null'} 416 {name: 'name', expectedNull: 'null'}
417 ] 417 ]
418 }, 418 },
419 {
420 type: 'HTMLMarqueeElement',
421 elementToUse: document.createElement('marquee'),
422 attributes: [
423 {name: 'behavior', expectedNull: 'null'},
424 {name: 'bgColor', expectedNull: 'null'},
425 {name: 'direction', expectedNull: 'null'},
426 {name: 'height', expectedNull: 'null'},
427 {name: 'width', expectedNull: 'null'}
428 ]
429 },
419 430
420 // HTMLMenuElement 431 // HTMLMenuElement
421 // NONE 432 // NONE
422 433
423 { 434 {
424 type: 'HTMLMetaElement', 435 type: 'HTMLMetaElement',
425 elementToUse: document.createElement('meta'), 436 elementToUse: document.createElement('meta'),
426 attributes: [ 437 attributes: [
427 {name: 'content', expectedNull: 'null'}, 438 {name: 'content', expectedNull: 'null'},
428 {name: 'httpEquiv', expectedNull: 'null'}, 439 {name: 'httpEquiv', expectedNull: 'null'},
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 printOut(''); 692 printOut('');
682 } 693 }
683 } 694 }
684 </script> 695 </script>
685 </head> 696 </head>
686 <body onload="runTests()"> 697 <body onload="runTests()">
687 <p>This test setting various attributes of a elements to JavaScript null.</p > 698 <p>This test setting various attributes of a elements to JavaScript null.</p >
688 <div id="console"></div> 699 <div id="console"></div>
689 </body> 700 </body>
690 </html> 701 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/element-attribute-js-null-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698