712600-2-dyn.html (2333B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"><head> 3 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 4 <meta charset="utf-8"> 5 <title>HTML Test: BDI: neutral when nested</title> 6 <link rel="reference" href="https://bug712600.bugzilla.mozilla.org/bdi-neutral-nested-ref.html"> 7 <link rel="author" title="Aharon Lanin" href="mailto:aharon@google.com"> 8 <link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com"> 9 <link rel="help" href="http://dev.w3.org/html5/spec/Overview.html#the-bdi-element"> 10 <meta name="assert" content=" 11 'For the purposes of applying the bidirectional algorithm to the paragraph-level 12 container that a bdi element finds itself within, the bdi element must be treated 13 like a U+FFFC OBJECT REPLACEMENT CHARACTER.'"> 14 <style> 15 body{ 16 font-size:2em; 17 } 18 </style> 19 </head> 20 <body> 21 <!-- Key to entities used below: 22 א ... ו - The first six Hebrew letters (strongly RTL). 23 ‭ - The LRO (left-to-right-override) formatting character. 24 ‬ - The PDF (pop directional formatting) formatting character; closes LRO. --> 25 26 <div dir="ltr">א + <bdi>[a + <bdi>[ב + <bdi>[b + 4]</bdi> + 3]</bdi> + 2]</bdi> + 1</div> 27 <div dir="ltr">א + <bdi dir="rtl">[a + <bdi dir="ltr">[ב + <bdi dir="rtl">[b + 4]</bdi> + 3]</bdi> + 2]</bdi> + 1</div> 28 <div dir="ltr">א + <bdi dir="ltr">[<span id='delete1'>z +</span>a + <bdi dir="rtl">[ב + <bdi dir="ltr">[b + 4]</bdi> + 3]</bdi> + 2]</bdi> + 1</div> 29 <div dir="rtl">a + <bdi>[א + <bdi>[b + <bdi>[ב + 3]</bdi> + 2]</bdi> + 1]</bdi> + 0</div> 30 <div dir="rtl">a + <bdi dir="ltr">[א + <bdi dir="rtl">[b + <bdi dir="ltr">[ב + 3]</bdi> + 2]</bdi> + 1]</bdi> + 0</div> 31 <div dir="rtl">a + <bdi dir="rtl">[א + <bdi dir="ltr">[<span 32 id='delete2'>z + </span>b + <bdi dir="rtl">[ב + 3]</bdi> + 2]</bdi> + 1]</bdi> + 0</div> 33 34 <script type="text/javascript"> 35 function deleteSpans() { 36 var n = document.getElementById('delete1'); 37 var n2 = document.getElementById('delete2'); 38 n.remove(); 39 n2.remove(); 40 document.documentElement.removeAttribute("class"); 41 } 42 document.addEventListener("MozReftestInvalidate", deleteSpans); 43 </script> 44 45 </body></html>