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

Unified Diff: LayoutTests/fast/multicol/span/table-caption-crash.html

Issue 809193002: Don't apply column-span:all for display:table-* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/span/table-caption-crash-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/multicol/span/table-caption-crash.html
diff --git a/LayoutTests/fast/multicol/span/table-caption-crash.html b/LayoutTests/fast/multicol/span/table-caption-crash.html
new file mode 100644
index 0000000000000000000000000000000000000000..30dcb9e539fb98f5c9f47b758ee54c01cd78ceba
--- /dev/null
+++ b/LayoutTests/fast/multicol/span/table-caption-crash.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+</script>
+<style>
+#invalid-spanner { display:none; -webkit-column-span:all; }
+</style>
+
+Test passes if it does not CRASH.
+<div style="-webkit-column-count:1;">
+ <div>
+ <span id="inline" style="display:none;"></span>
+ <div id="invalid-spanner"></div>
+ </div>
+</div>
+
+<script>
+ document.body.offsetTop;
+ document.getElementById("inline").style.display = "inline";
+
+ // Note that a table-caption isn't allowed to become a spanner.
+ document.getElementById("invalid-spanner").style.display = "table-caption";
+
+ onload = function() {
+ document.body.offsetTop;
+ document.getElementById("invalid-spanner").style.webkitColumnSpan = "none";
+ }
+</script>
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/span/table-caption-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698