Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 .fail { | 5 .fail { |
| 6 color: red; | 6 color: red; |
| 7 font-weight: bold; | 7 font-weight: bold; |
| 8 } | 8 } |
| 9 | 9 |
| 10 .pass { | 10 .pass { |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 148 shouldThrowException(xslContent, "text/xsl"); | 148 shouldThrowException(xslContent, "text/xsl"); |
| 149 shouldThrowException(xmlContent, "text/dummy+xml"); | 149 shouldThrowException(xmlContent, "text/dummy+xml"); |
| 150 shouldThrowException(xmlContent, "text/XML"); | 150 shouldThrowException(xmlContent, "text/XML"); |
| 151 shouldThrowException(xmlContent, "TEXT/html"); | 151 shouldThrowException(xmlContent, "TEXT/html"); |
| 152 } | 152 } |
| 153 </script> | 153 </script> |
| 154 </head> | 154 </head> |
| 155 <body onload="runTest();"> | 155 <body onload="runTest();"> |
| 156 <p>This tests DOMParser supports creating Document for HTML content with mime-ty pe "text/html".</p> | 156 <p>This tests DOMParser supports creating Document for HTML content with mime-ty pe "text/html".</p> |
| 157 </body> | 157 </body> |
| 158 </html> | 158 </html> |
|
philipj_slow
2015/06/24 11:52:18
This looks like an accidental change unrelated to
| |
| OLD | NEW |