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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/dom-parse-serialize-display-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 <?xml-stylesheet href="display.css" type="text/css"?>
8 <!DOCTYPE doc [
9 <!ATTLIST d id ID #IMPLIED>
10 ]>
11 <doc>
12 <foo xmlns="foobar">One</foo> <x:bar xmlns:x="barfoo">Two</x:bar>
13 <d id="id3">Three</d>
14 </doc>
15
16 document object
17
18 [object XMLDocument]
19
20 document object serialized
21
22 <?xml version="1.0"?><?xml-stylesheet href="display.css" type="text/css"?><!DOCT YPE doc><doc>
23 <foo xmlns="foobar">One</foo> <x:bar xmlns:x="barfoo">Two</x:bar>
24 <d id="id3">Three</d>
25 </doc>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698