8000 Bug 1691006 [wpt PR 27501] - HTML: Escape "<" and ">" in attribute va… · mozilla-firefox/firefox@ce1b63a · GitHub
[go: up one dir, main page]

Skip to content

Commit ce1b63a

Browse files
zcorpanlutien
authored andcommitted
Bug 1691006 [wpt PR 27501] - HTML: Escape "<" and ">" in attribute values when serializing,
Automatic update from web-platform-tests HTML: Escape "<" and ">" in attribute values when serializing See whatwg/html#6362. -- wpt-commits: 3fad71d22b6681a3430ff498add3ea8c31660401 wpt-pr: 27501 Differential Revision: https://phabricator.services.mozilla.com/D250932
1 parent 5d6bb57 commit ce1b63a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
File renamed without changes.

testing/web-platform/tests/html/syntax/serializing-html-fragments/serializing.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
["<a b=\"&amp;\"></a>", "<span><a b=\"&amp;\"></a></span>"],
4949
["<a b=\"&nbsp;\"></a>", "<span><a b=\"&nbsp;\"></a></span>"],
5050
["<a b=\"&quot;\"></a>", "<span><a b=\"&quot;\"></a></span>"],
51-
["<a b=\"<\"></a>", "<span><a b=\"<\"></a></span>"],
52-
["<a b=\">\"></a>", "<span><a b=\">\"></a></span>"],
53-
["<a href=\"javascript:&quot;<>&quot;\"></a>", "<span><a href=\"javascript:&quot;<>&quot;\"></a></span>"],
51+
["<a b=\"&lt;\"></a>", "<span><a b=\"&lt;\"></a></span>"],
52+
["<a b=\"&gt;\"></a>", "<span><a b=\"&gt;\"></a></span>"],
53+
["<a href=\"javascript:&quot;&lt;&gt;&quot;\"></a>", "<span><a href=\"javascript:&quot;&lt;&gt;&quot;\"></a></span>"],
5454
["<svg xlink:href=\"a\"></svg>", "<span><svg xlink:href=\"a\"></svg></span>"],
5555
["<svg xmlns:svg=\"test\"></svg>", "<span><svg xmlns:svg=\"test\"></svg></span>"],
5656
["a", "<span>a</span>"],

0 commit comments

Comments
 (0)
0