1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bidi/779003-1-dynamic.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,53 @@ 1.4 +<!DOCTYPE html> 1.5 +<html class="reftest-wait"> 1.6 + <head> 1.7 + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 1.8 + <style type="text/css"> 1.9 +#searchPaginationFooter { 1.10 + direction: rtl; 1.11 +} 1.12 + 1.13 +.backLink { 1.14 + display: inline; 1.15 +} 1.16 + 1.17 +.nextLink { 1.18 + display: inline; 1.19 +} 1.20 + 1.21 +.pagination, 1.22 +.pagination li { 1.23 + display: inline; 1.24 +} 1.25 + </style> 1.26 + </head> 1.27 + <body> 1.28 + <div> 1.29 + <div id="searchPaginationFooter"> 1.30 + <p class="backLink"> < <span class="gray">السابق</span></p> 1.31 + <ul class="pagination"> 1.32 + <li><span class="select">1</span></li> 1.33 + <li><a href="#page=2">2</a></li> 1.34 + <li><a href="#page=3">3</a></li> 1.35 + <li><a href="#page=4">4</a></li> 1.36 + <li><a href="#page=5">5</a></li> 1.37 + <li><a href="#page=6">6</a></li> 1.38 + <li><a href="#page=7">7</a></li> 1.39 + <li><a href="#page=8">8</a></li> 1.40 + <li id="here"><a href="#page=9">9</a></li> 1.41 + <li>...</li> 1.42 + <li><a href="#page=325">325</a></li> 1.43 + </ul> 1.44 + <p class="nextLink"><a href="#page=2">التالي</a> > </p> 1.45 + </div> 1.46 + </div> 1.47 +<script type="text/javascript"> 1.48 +function removePage() { 1.49 + var here = document.getElementById("here"); 1.50 + here.parentNode.removeChild(here); 1.51 + document.documentElement.removeAttribute("class"); 1.52 +} 1.53 +document.addEventListener("MozReftestInvalidate", removePage, false); 1.54 +</script> 1.55 + </body> 1.56 +</html>