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

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

Issue 98313003: Remove TreatNullAs=NullString for HTMLLinkElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 type: 'HTMLLIElement', 380 type: 'HTMLLIElement',
381 elementToUse: document.createElement('li'), 381 elementToUse: document.createElement('li'),
382 attributes: [ 382 attributes: [
383 {name: 'type', expectedNull: 'null'} 383 {name: 'type', expectedNull: 'null'}
384 ] 384 ]
385 }, 385 },
386 { 386 {
387 type: 'HTMLLinkElement', 387 type: 'HTMLLinkElement',
388 elementToUse: document.createElement('link'), 388 elementToUse: document.createElement('link'),
389 attributes: [ 389 attributes: [
390 {name: 'charset', expectedNull: ''}, 390 {name: 'charset', expectedNull: 'null'},
391 {name: 'href', expectedNull: ''}, 391 {name: 'href', expectedNull: 'null', isUrl: true},
392 {name: 'hreflang', expectedNull: ''}, 392 {name: 'hreflang', expectedNull: 'null'},
393 {name: 'media', expectedNull: ''}, 393 {name: 'media', expectedNull: 'null'},
394 {name: 'rel', expectedNull: ''}, 394 {name: 'rel', expectedNull: 'null'},
395 {name: 'rev', expectedNull: ''}, 395 {name: 'rev', expectedNull: 'null'},
396 {name: 'target', expectedNull: ''}, 396 {name: 'target', expectedNull: 'null'},
397 {name: 'type', expectedNull: ''} 397 {name: 'type', expectedNull: 'null'}
398 ] 398 ]
399 }, 399 },
400 { 400 {
401 type: 'HTMLMapElement', 401 type: 'HTMLMapElement',
402 elementToUse: document.createElement('map'), 402 elementToUse: document.createElement('map'),
403 attributes: [ 403 attributes: [
404 {name: 'name', expectedNull: ''} 404 {name: 'name', expectedNull: ''}
405 ] 405 ]
406 }, 406 },
407 407
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 printOut(''); 660 printOut('');
661 } 661 }
662 } 662 }
663 </script> 663 </script>
664 </head> 664 </head>
665 <body onload="runTests()"> 665 <body onload="runTests()">
666 <p>This test setting various attributes of a elements to JavaScript null.</p > 666 <p>This test setting various attributes of a elements to JavaScript null.</p >
667 <div id="console"></div> 667 <div id="console"></div>
668 </body> 668 </body>
669 </html> 669 </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