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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../../resources/testharness.js"></script>
3 <script src="../../../resources/testharnessreport.js"></script>
4 <body>
esprehn 2014/08/13 07:01:10 no body.
deepak.sa 2014/08/13 12:44:38 Done.
5 <script>
6 test(function () {
7 var A = document.registerElement('mixed-CASE-custom-TAG');
8 assert_true(document.createElement('MIXED-case-CUSTOM-tag') instanceof A);
9 assert_true(
10 document.createElement('MIXED-case-CUSTOM-tag', null) instanceof A);
11 }, 'createElement is case insensitive for custom tags');
12
13 test(function () {
14 var B = document.registerElement('mixed-CASE-type-EXTENSION', {extends: 'spa n'});
15 assert_true(document.createElement('span', 'MIXED-case-TYPE-extension')
16 instanceof B);
17 }, 'createElement is case insensitive for type extensions');
18 </script>
19 </body>
OLDNEW
« 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