summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/leaks/001.html
diff options
context:
space:
mode:
Diffstat (limited to 'LayoutTests/fast/leaks/001.html')
-rw-r--r--LayoutTests/fast/leaks/001.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/LayoutTests/fast/leaks/001.html b/LayoutTests/fast/leaks/001.html
new file mode 100644
index 0000000..d3c728a
--- /dev/null
+++ b/LayoutTests/fast/leaks/001.html
@@ -0,0 +1,22 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+ <head>
+ <title>BidiRun leak test</title>
+ <style type="text/css">
+ .compact { display: compact; }
+ .block { display: block; color: red; background: lime; line-height: 0; margin-left: 10em; }
+ span { color: black; }
+ </style>
+ <script>
+ if (window.layoutTestController)
+ layoutTestController.dumpAsText();
+ </script>
+ </head>
+ <body>
+ <p>This test exercises RenderBlock::bidiReorderCharacters in a specific way to
+ test for BidiRun leaks as reported in rdar://problem/4987649. Its layout has no
+ particular meaning.</p>
+ <div class="compact"> Test: </div>
+ <div class="block"></div>
+ </body>
+</html>