| @media all and(min-width: 2px) { #styled { color: green; } } |
| @media all and(max-width: 1px) { #styled { color: red; } } |
| var element = document.getElementById('styled'); |
| var computedColor = window.getComputedStyle(element).color; |
| if (computedColor === "rgb(0, 128, 0)") |
| document.getElementById("result").textContent = "SUCCESS"; |
| document.getElementById("result").textContent = "FAILURE: " + computedColor; |
| <body onload="runTest();"> |
| <div id="styled">This should be green</div> |
| <div id="result">FAILURE</div> |