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

Side by Side Diff: LayoutTests/fast/dom/domparser-parsefromstring-mimetype-support.html

Issue 1176013002: Move attributes and methods from HTMLDocument to Document (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Introduced open and close methods without arguments to handle internal calls. Created 5 years, 6 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
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698