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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/dom-parse-serialize-expected.txt

Issue 2667303004: Move tests for DOMParser and XMLSerializer to dom/domparsing/. (Closed)
Patch Set: Created 3 years, 10 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
(Empty)
1 DOMParser/XMLSerializer test
2
3 The "text to parse" and "document object serialized" boxes should show the same text, and it should be an XML document, not "@@No result@@".
4 text to parse
5
6 <?xml version="1.0"?>
7 <!DOCTYPE doc [
8 <!ATTLIST d id ID #IMPLIED>
9 ]>
10 <doc>
11 <foo xmlns="foobar">One</foo> <x:bar xmlns:x="barfoo">Two</x:bar>
12 <d id="id3">Three</d>
13 <f id="&amp;&lt;&gt;>">Four&amp;&lt;&gt;</f><empty/><empty></empty></doc>
14
15 document object
16
17 [object XMLDocument]
18
19 document object serialized
20
21 <?xml version="1.0"?><!DOCTYPE doc><doc>
22 <foo xmlns="foobar">One</foo> <x:bar xmlns:x="barfoo">Two</x:bar>
23 <d id="id3">Three</d>
24 <f id="&amp;&lt;&gt;&gt;">Four&amp;&lt;&gt;</f><empty/><empty/></doc>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698