layout/reftests/bugs/375716-1.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bugs/375716-1.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,25 @@
     1.4 +<html class="reftest-wait"><head>
     1.5 +<title>Bug 375716 - Incremental reflow bug with direction: rtl and bidi-override</title>
     1.6 +<style>
     1.7 +
     1.8 +div {
     1.9 +border: 1px solid black;
    1.10 +width:200px;
    1.11 +}
    1.12 +</style>
    1.13 +<script>
    1.14 +function boom() {
    1.15 +  var div = document.getElementById('div');
    1.16 +  div.removeAttribute('style')
    1.17 +  document.documentElement.removeAttribute("class");
    1.18 +}
    1.19 +</script>
    1.20 +</head><body onload="boom()">
    1.21 +<div id="div" style="font-size:120%">
    1.22 +<i style="direction: rtl;">
    1.23 +text text text text 
    1.24 +<b style="unicode-bidi: bidi-override;">text text text text text</b>
    1.25 +text
    1.26 +</i>
    1.27 +</div>
    1.28 +</body></html>

mercurial