Title: [203282] trunk/LayoutTests
Revision
203282
Author
[email protected]
Date
2016-07-15 10:35:07 -0700 (Fri, 15 Jul 2016)

Log Message

Merge Blink test case
https://bugs.webkit.org/show_bug.cgi?id=123870

Patch is from the Blink change (patch by <[email protected]>):
<https://chromium.googlesource.com/chromium/blink/+/2abd63ccea97b1fcf25b337c76f12e6ad1bfc025>

* fast/dom/mutation-details-focus-expected.txt: Added.
* fast/dom/mutation-details-focus.html: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (203281 => 203282)


--- trunk/LayoutTests/ChangeLog	2016-07-15 17:30:58 UTC (rev 203281)
+++ trunk/LayoutTests/ChangeLog	2016-07-15 17:35:07 UTC (rev 203282)
@@ -1,3 +1,14 @@
+2016-07-15  Brent Fulgham  <[email protected]>
+
+        Merge Blink test case
+        https://bugs.webkit.org/show_bug.cgi?id=123870
+
+        Patch is from the Blink change (patch by <[email protected]>):
+        <https://chromium.googlesource.com/chromium/blink/+/2abd63ccea97b1fcf25b337c76f12e6ad1bfc025>
+
+        * fast/dom/mutation-details-focus-expected.txt: Added.
+        * fast/dom/mutation-details-focus.html: Added.
+
 2016-07-15  Ryan Haddad  <[email protected]>
 
         Updating TestExpectations after r203267

Added: trunk/LayoutTests/fast/dom/mutation-details-focus-expected.txt (0 => 203282)


--- trunk/LayoutTests/fast/dom/mutation-details-focus-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/fast/dom/mutation-details-focus-expected.txt	2016-07-15 17:35:07 UTC (rev 203282)
@@ -0,0 +1,2 @@
+PASS if we do not crash.
+

Added: trunk/LayoutTests/fast/dom/mutation-details-focus.html (0 => 203282)


--- trunk/LayoutTests/fast/dom/mutation-details-focus.html	                        (rev 0)
+++ trunk/LayoutTests/fast/dom/mutation-details-focus.html	2016-07-15 17:35:07 UTC (rev 203282)
@@ -0,0 +1,16 @@
+<body>
+<script src=""
+<script>
+(function() {
+    (function() {
+        var theElement = document.createElement("details");
+        document.body.appendChild(theElement);
+        theElement.addEventListener("DOMNodeRemovedFromDocument", function () { eventSender.keyDown("\t"); }, false);
+        theElement.parentNode.removeChild(theElement);
+    })();
+    gc();
+    debug("PASS if we do not crash.");
+})();
+</script>
+<script src=""
+</body>
\ No newline at end of file
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to