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/custom/element-names.html

Issue 493713002: Invalid chars should not be allowed as first character in custom element name (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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
Index: LayoutTests/fast/dom/custom/element-names.html
diff --git a/LayoutTests/fast/dom/custom/element-names.html b/LayoutTests/fast/dom/custom/element-names.html
index 136d2364c73a103ace6f00036ba6c1a53526a7b4..b6d6b282e71143295553bbb142b7a531b6694faa 100644
--- a/LayoutTests/fast/dom/custom/element-names.html
+++ b/LayoutTests/fast/dom/custom/element-names.html
@@ -23,7 +23,10 @@ test(function () {
'font-face-uri',
'font-face-format',
'font-face-name',
- 'missing-glyph'
+ 'missing-glyph',
+ // names containing colon
+ ':-xfoo',
+ 'xfoo:yfoo'
];
for (var i = 0; i < invalidNames.length; i++) {

Powered by Google App Engine
This is Rietveld 408576698