summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/leaks/001.html
blob: d3c728ac42f942d638608bd1954c2712ffd20782 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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>