media.html 369 B

1234567891011121314151617
  1. <style>
  2. @media handheld, only screen and (max-device-width: 480px){
  3. html {
  4. color: black;
  5. }
  6. }
  7. </style>
  8. <script>
  9. window.onload = function(){
  10. if (document.styleSheets[0].cssRules[0].cssRules[0].parentRule === document.styleSheets[0].cssRules[0]) {
  11. document.body.innerHTML = "PASS parentRule";
  12. } else {
  13. document.body.innerHTML = "FAIL parentRule";
  14. }
  15. }
  16. </script>