blob: ebc1fa22feea9ced057aeea63e5d9fef2774bb71 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="style-src 'sha1-eYyYGmKWdhpUewohaXk9o8IaLSw=' 'sha256-hndjYvzUzy2Ykuad81Cwsl1FOXX/qYs/aDVyUyNZwBw=' 'sha384-bSVm1i3sjPBRM4TwZtYTDjk9JxZMExYHWbFmP1SxDhJH4ue0Wu9OPOkY5hcqRcSt' 'sha512-440MmBLtj9Kp5Bqloogn9BqGDylY8vFsv5/zXL1zH2fJVssCoskRig4gyM+9KqwvCSapSz5CVoUGHQcxv43UQg=='">
</head>
<body>
<p id="p1">This tests the result of a valid style hash. It passes if this text is green, and a "PASS" alert for p1 is fired.</p>
<p id="p2">This tests the result of a valid style hash. It passes if this text is green, and a "PASS" alert for p2 is fired.</p>
<p id="p3">This tests the result of a valid style hash. It passes if this text is green, and a "PASS" alert for p3 is fired.</p>
<p id="p4">This tests the result of a valid style hash. It passes if this text is green, and a "PASS" alert for p4 is fired.</p>
<style>p#p1 { color: green; }</style>
<style>p#p2 { color: green; }</style>
<style>p#p3 { color: green; }</style>
<style>p#p4 { color: green; }</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
var color = window.getComputedStyle(document.querySelector('#p1')).color;
if (color === "rgb(0, 128, 0)")
alert("PASS (1/4): The '#p1' element's text is green, which means the style was correctly applied.");
else
alert("FAIL (1/4): The '#p1' element's text is " + color + ", which means the style was incorrectly applied.");
var color = window.getComputedStyle(document.querySelector('#p2')).color;
if (color === "rgb(0, 128, 0)")
alert("PASS (2/4): The '#p2' element's text is green, which means the style was correctly applied.");
else
alert("FAIL (2/4): The '#p2' element's text is " + color + ", which means the style was incorrectly applied.");
var color = window.getComputedStyle(document.querySelector('#p3')).color;
if (color === "rgb(0, 128, 0)")
alert("PASS (3/4): The '#p3' element's text is green, which means the style was correctly applied.");
else
alert("FAIL (3/4): The '#p3' element's text is " + color + ", which means the style was incorrectly applied.");
var color = window.getComputedStyle(document.querySelector('#p4')).color;
if (color === "rgb(0, 128, 0)")
alert("PASS (4/4): The '#p4' element's text is green, which means the style was correctly applied.");
else
alert("FAIL (4/4): The '#p4' element's text is " + color + ", which means the style was incorrectly applied.");
</script>
</body>
</html>