https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a7123ce2a36ef083325fea282c3469d1e7cc5b5d authored by Ryan VanderMeulen on 04 February 2014, 01:20:22 UTC
Merge m-b to b2g28. a=merge CLOSED TREE
Tip revision: a7123ce
562169-3.html
<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title>dir() selector</title>
  <style>
   :not(:-moz-dir(rtl)) + div { color: blue }
   div { color: lime; text-align: left; }
  </style>
 </head>
 <body>
  <div dir="rtl">This element is rtl.</div>
  <div>This element has default direction.</div>
 </body>
</html>
back to top