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

Log Message

Merge First-letter Blink test case
https://bugs.webkit.org/show_bug.cgi?id=123961

Test case is from the Blink change (patch by <[email protected]>):
<https://chromium.googlesource.com/chromium/blink/+/c8ff8df9fc2ad81580526d53304c281df5d93e97%5E%21/#F1>

* fast/css-generated-content/empty-first-letter-with-columns-crash-expected.txt: Added.
* fast/css-generated-content/empty-first-letter-with-columns-crash.html: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (203306 => 203307)


--- trunk/LayoutTests/ChangeLog	2016-07-15 22:38:30 UTC (rev 203306)
+++ trunk/LayoutTests/ChangeLog	2016-07-15 23:25:35 UTC (rev 203307)
@@ -1,3 +1,14 @@
+2016-07-15  Brent Fulgham  <[email protected]>
+
+        Merge First-letter Blink test case
+        https://bugs.webkit.org/show_bug.cgi?id=123961
+
+        Test case is from the Blink change (patch by <[email protected]>):
+        <https://chromium.googlesource.com/chromium/blink/+/c8ff8df9fc2ad81580526d53304c281df5d93e97%5E%21/#F1>
+
+        * fast/css-generated-content/empty-first-letter-with-columns-crash-expected.txt: Added.
+        * fast/css-generated-content/empty-first-letter-with-columns-crash.html: Added.
+
 2016-07-15  Ryan Haddad  <[email protected]>
 
         Marking http/tests/cache/disk-cache/disk-cache-request-max-stale.html as a flaky timeout on ios-simulator WK2 Release

Added: trunk/LayoutTests/fast/css-generated-content/empty-first-letter-with-columns-crash-expected.txt (0 => 203307)


--- trunk/LayoutTests/fast/css-generated-content/empty-first-letter-with-columns-crash-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/fast/css-generated-content/empty-first-letter-with-columns-crash-expected.txt	2016-07-15 23:25:35 UTC (rev 203307)
@@ -0,0 +1,2 @@
+
+PASS. Test didn't crash.

Added: trunk/LayoutTests/fast/css-generated-content/empty-first-letter-with-columns-crash.html (0 => 203307)


--- trunk/LayoutTests/fast/css-generated-content/empty-first-letter-with-columns-crash.html	                        (rev 0)
+++ trunk/LayoutTests/fast/css-generated-content/empty-first-letter-with-columns-crash.html	2016-07-15 23:25:35 UTC (rev 203307)
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<style>
+.slider { -webkit-appearance: media-volume-slider-mute-button; }
+*:first-letter { pointer-events: fill; }
+</style>
+<body style="-webkit-column-count: 2">
+    <div>
+        <button></button>
+        <table id="table" style="-webkit-column-span: all"></table>
+    </div>
+<script>
+document.body.offsetHeight;
+document.body.appendChild(document.createElement('div'));
+document.getElementById('table').className = 'slider'
+if (window.testRunner)
+    testRunner.dumpAsText();
+document.write("PASS. Test didn't crash.");
+</script>
+</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