From f3533ecfc135b2fa2971eb6696e87a065e9bd85b Mon Sep 17 00:00:00 2001 From: Keegan McAllister Date: Thu, 17 Oct 2013 13:04:34 -0700 Subject: [PATCH] Update comment with spec link --- src/test/html/content/test_collections.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/html/content/test_collections.html b/src/test/html/content/test_collections.html index e92c19013a9..f3dc6d33e59 100644 --- a/src/test/html/content/test_collections.html +++ b/src/test/html/content/test_collections.html @@ -75,7 +75,8 @@ check_tag("track", 1, [HTMLTrackElement]); check_tag("audio", 1, [HTMLMediaElement, HTMLAudioElement]); check_tag("video", 1, [HTMLMediaElement, HTMLVideoElement]); -// Test non-ASCII tag names. The ASCII-only uppercasing matches Firefox's behavior. +// Test non-ASCII tag names. Uppercasing is ASCII-only per spec: +// http://dom.spec.whatwg.org/#dom-element-tagname check_tag("foo-á", 1, [HTMLUnknownElement], "FOO-á"); finish();