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

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: 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>
5 <script>var A = document.registerElement('mixed-CASE-custom-TAG');
dominicc (has gone to gerrit) 2014/08/11 06:05:27 Move this inside the test(...) since it is only us
deepak.sa 2014/08/11 10:32:49 Done.
6
7 test(function () {
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 </script>
13 </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