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

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

Issue 22911019: [DOM4] Have ProcessingInstruction inherit CharacterData (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/fast/dom/coreDOM-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 xmlns="http://www.w3.org/1999/xhtml"> 1 <html xmlns="http://www.w3.org/1999/xhtml">
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 type="text/javascript" charset="utf-8"> 7 <script type="text/javascript" charset="utf-8">
8 function printOut(msg) 8 function printOut(msg)
9 { 9 {
10 var console = document.getElementById("console"); 10 var console = document.getElementById("console");
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 type: 'Attr', 50 type: 'Attr',
51 elementToUse: document.createAttributeNS('http://www.w3.org/ 1999/xhtml','anAttribute'), 51 elementToUse: document.createAttributeNS('http://www.w3.org/ 1999/xhtml','anAttribute'),
52 attributes: [ 52 attributes: [
53 {name: 'value', expectedNull: null} 53 {name: 'value', expectedNull: null}
54 ] 54 ]
55 }, 55 },
56 { 56 {
57 type: 'ProcessingInstruction', 57 type: 'ProcessingInstruction',
58 elementToUse: document.createProcessingInstruction('target', 'data'), 58 elementToUse: document.createProcessingInstruction('target', 'data'),
59 attributes: [ 59 attributes: [
60 {name: 'data', expectedNull: null} 60 {name: 'data', expectedNull: ''}
61 ] 61 ]
62 }, 62 },
63 { 63 {
64 type: 'CharacterData', 64 type: 'CharacterData',
65 elementToUse: document.createTextNode('text'), 65 elementToUse: document.createTextNode('text'),
66 attributes: [ 66 attributes: [
67 {name: 'data', expectedNull: ''} 67 {name: 'data', expectedNull: ''}
68 ] 68 ]
69 } 69 }
70 ]; 70 ];
(...skipping 10 matching lines...) Expand all
81 } 81 }
82 82
83 </script> 83 </script>
84 </head> 84 </head>
85 85
86 <body onload="runTests();"> 86 <body onload="runTests();">
87 <p>This test setting various attributes of a elements to JavaScript null.</p > 87 <p>This test setting various attributes of a elements to JavaScript null.</p >
88 <div id="console"></div> 88 <div id="console"></div>
89 </body> 89 </body>
90 </html> 90 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/coreDOM-element-attribute-js-null-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698