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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/week-multiple-fields/week-multiple-fields-no-shadow-event.html

Issue 1420653003: Fix an optimisation in ContainerNode::notifyNodeInsertedInternal (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix assertion Created 5 years, 2 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 <body>
3 <script src="../../../resources/js-test.js"></script>
4 <script>
5 var input = document.createElement("input");
6 var passed = true;
7 input.type = "week";
8 input.addEventListener("DOMCharacterDataModified", function() {
9 passed = false;
10 testFailed("DOMCharacterDataModified event should not be visible.");
11 });
12
13 input.value = "2015-W10";
14 if (passed) {
15 testPassed("event did not get triggered.");
16 }
17 </script>
18 </body>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/forms/week-multiple-fields/week-multiple-fields-no-shadow-event-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698