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

Unified Diff: LayoutTests/fast/dom/custom/custom-element-name-sensivity.html

Issue 442343002: Creating custom element should not be case sensitive (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressing Comments 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/custom-element-name-sensivity.html
diff --git a/LayoutTests/fast/dom/custom/custom-element-name-sensivity.html b/LayoutTests/fast/dom/custom/custom-element-name-sensivity.html
new file mode 100644
index 0000000000000000000000000000000000000000..8449551de32e9371233ac86762e32cd8cd7166fc
--- /dev/null
+++ b/LayoutTests/fast/dom/custom/custom-element-name-sensivity.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<script src="../../../resources/testharness.js"></script>
+<script src="../../../resources/testharnessreport.js"></script>
+<body>
esprehn 2014/08/13 07:01:10 no body.
deepak.sa 2014/08/13 12:44:38 Done.
+<script>
+test(function () {
+ var A = document.registerElement('mixed-CASE-custom-TAG');
+ assert_true(document.createElement('MIXED-case-CUSTOM-tag') instanceof A);
+ assert_true(
+ document.createElement('MIXED-case-CUSTOM-tag', null) instanceof A);
+}, 'createElement is case insensitive for custom tags');
+
+test(function () {
+ var B = document.registerElement('mixed-CASE-type-EXTENSION', {extends: 'span'});
+ assert_true(document.createElement('span', 'MIXED-case-TYPE-extension')
+ instanceof B);
+}, 'createElement is case insensitive for type extensions');
+</script>
+</body>
« no previous file with comments | « no previous file | LayoutTests/fast/dom/custom/custom-element-name-sensivity-expected.txt » ('j') | Source/core/dom/Document.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698