diff options
Diffstat (limited to 'layout/reftests/bidi/779003-1-dynamic.html')
-rw-r--r-- | layout/reftests/bidi/779003-1-dynamic.html | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/layout/reftests/bidi/779003-1-dynamic.html b/layout/reftests/bidi/779003-1-dynamic.html new file mode 100644 index 0000000000..3ede41a27d --- /dev/null +++ b/layout/reftests/bidi/779003-1-dynamic.html @@ -0,0 +1,53 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <style type="text/css"> +#searchPaginationFooter { + direction: rtl; +} + +.backLink { + display: inline; +} + +.nextLink { + display: inline; +} + +.pagination, +.pagination li { + display: inline; +} + </style> + </head> + <body> + <div> + <div id="searchPaginationFooter"> + <p class="backLink"> < <span class="gray">السابق</span></p> + <ul class="pagination"> + <li><span class="select">1</span></li> + <li><a href="#page=2">2</a></li> + <li><a href="#page=3">3</a></li> + <li><a href="#page=4">4</a></li> + <li><a href="#page=5">5</a></li> + <li><a href="#page=6">6</a></li> + <li><a href="#page=7">7</a></li> + <li><a href="#page=8">8</a></li> + <li id="here"><a href="#page=9">9</a></li> + <li>...</li> + <li><a href="#page=325">325</a></li> + </ul> + <p class="nextLink"><a href="#page=2">التالي</a> > </p> + </div> + </div> +<script type="text/javascript"> +function removePage() { + var here = document.getElementById("here"); + here.remove(); + document.documentElement.removeAttribute("class"); +} +document.addEventListener("MozReftestInvalidate", removePage); +</script> + </body> +</html> |