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

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: Addrressing comments Created 6 years, 1 month 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 2fc6408112b616296bfa69d3eae5b91b1c8db2b7..56d4db0676debf85e9c2b43e318e32f3c736f036 100644
--- a/LayoutTests/fast/dom/custom/element-names.html
+++ b/LayoutTests/fast/dom/custom/element-names.html
@@ -17,7 +17,10 @@ test(function () {
// Reserved names:
// hyphen-containing names from the applicable specifications,
// namely the SVG and the MathML.
- 'annotation-xml'
+ 'annotation-xml',
dglazkov 2014/11/06 05:52:43 What about test expectations?
deepak.sa 2014/11/06 06:20:02 Test expectation file for this file has been remov
deepak.sa 2014/11/06 06:38:38 CL in which test expectations were removed : https
+ // names containing colon
+ ':-xfoo',
+ 'xfoo-:yfoo'
];
for (var i = 0; i < invalidNames.length; i++) {

Powered by Google App Engine
This is Rietveld 408576698