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

Unified Diff: LayoutTests/fast/dom/dom-parse-serialize-expected.txt

Issue 117103003: DOM serialization: fix quoting of < and > in HMTL attribute values. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: < and > are un-quoted in HTML, quoted in XML. Created 6 years, 12 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/fast/dom/dom-parse-serialize.html ('k') | Source/core/editing/MarkupAccumulator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/dom-parse-serialize-expected.txt
diff --git a/LayoutTests/fast/dom/dom-parse-serialize-expected.txt b/LayoutTests/fast/dom/dom-parse-serialize-expected.txt
index de44f75ad3a3b0e0ee673d33f3d18bc8009b9a4f..0e54fa602ce4c50371becd450b16c67940b74d83 100644
--- a/LayoutTests/fast/dom/dom-parse-serialize-expected.txt
+++ b/LayoutTests/fast/dom/dom-parse-serialize-expected.txt
@@ -10,7 +10,7 @@ text to parse
<doc>
<foo xmlns="foobar">One</foo> <x:bar xmlns:x="barfoo">Two</x:bar>
<d id="id3">Three</d>
-<f id="&amp;&lt;&gt;">Four&amp;&lt;&gt;</f><empty/><empty></empty></doc>
+<f id="&amp;&lt;&gt;>">Four&amp;&lt;&gt;</f><empty/><empty></empty></doc>
document object
@@ -21,4 +21,4 @@ document object serialized
<?xml version="1.0"?><!DOCTYPE doc><doc>
<foo xmlns="foobar">One</foo> <x:bar xmlns:x="barfoo">Two</x:bar>
<d id="id3">Three</d>
-<f id="&amp;&lt;&gt;">Four&amp;&lt;&gt;</f><empty/><empty/></doc>
+<f id="&amp;&lt;&gt;&gt;">Four&amp;&lt;&gt;</f><empty/><empty/></doc>
« no previous file with comments | « LayoutTests/fast/dom/dom-parse-serialize.html ('k') | Source/core/editing/MarkupAccumulator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698