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

Side by Side Diff: LayoutTests/fast/parser/fragment-parser-doctype.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../js/resources/js-test-pre.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 </head> 4 </head>
5 <body> 5 <body>
6 <script> 6 <script>
7 debug("Verify that a fragment's DOCTYPE does not affect parsing. We expect D OCTYPEs to be ignored for fragments with context elements."); 7 debug("Verify that a fragment's DOCTYPE does not affect parsing. We expect D OCTYPEs to be ignored for fragments with context elements.");
8 var container = document.createElement("div"); 8 var container = document.createElement("div");
9 document.body.appendChild(container); 9 document.body.appendChild(container);
10 container.innerHTML = "<!DOCTYPE html><p><table>" 10 container.innerHTML = "<!DOCTYPE html><p><table>"
11 shouldBeNull("container.firstChild.nextSibling"); 11 shouldBeNull("container.firstChild.nextSibling");
12 </script> 12 </script>
13 <p id="test"><table></table> 13 <p id="test"><table></table>
14 <script> 14 <script>
15 debug ("Verify that a fragment's DOCTYPE does not change the compatibility m ode of the owner document."); 15 debug ("Verify that a fragment's DOCTYPE does not change the compatibility m ode of the owner document.");
16 var test = document.getElementById("test"); 16 var test = document.getElementById("test");
17 shouldBeNull("container.firstChild.nextSibling"); 17 shouldBeNull("container.firstChild.nextSibling");
18 </script> 18 </script>
19 </body> 19 </body>
20 </html> 20 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/parser/fragment-parser.html ('k') | LayoutTests/fast/parser/localname-case.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698