summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text/crashtests/line-break-float-crash.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-text/crashtests/line-break-float-crash.html')
-rw-r--r--testing/web-platform/tests/css/css-text/crashtests/line-break-float-crash.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-text/crashtests/line-break-float-crash.html b/testing/web-platform/tests/css/css-text/crashtests/line-break-float-crash.html
new file mode 100644
index 0000000000..bdf47c3e8a
--- /dev/null
+++ b/testing/web-platform/tests/css/css-text/crashtests/line-break-float-crash.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<link rel="help" href="https://drafts.csswg.org/css-text-3">
+<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
+<style>
+#container {
+ font-size: 100px;
+ width: 33554432px;
+}
+atomic {
+ display: inline-block;
+ width: 1ch;
+}
+left {
+ float: left;
+ width: 33554432px;
+ height: 10px;
+}
+</style>
+<body>
+ <div id="container">
+ <atomic></atomic>
+ 0
+ <left></left>
+ <span dir="ltr"><atomic></atomic></span>
+ </div>
+</body>