| OLD | NEW |
| (Empty) | |
| 1 <?xml version="1.0"?> |
| 2 <?xml-stylesheet href="./no-cache-xslt.php" type="text/xsl"?> |
| 3 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 4 <head> |
| 5 <link rel="stylesheet" type="text/css" href="./no-cache-css.php" /> |
| 6 </head> |
| 7 <body> |
| 8 <div id="markred">This text should be red.</div> |
| 9 <div id="markgreen" style="">This text should be green.</div> |
| 10 <script> |
| 11 window.addEventListener("message", function() { |
| 12 const divRed = document.getElementById("markred"); |
| 13 const divGreen = document.getElementById("markgreen"); |
| 14 var styleRed = getComputedStyle(divRed, ""); |
| 15 var styleGreen = getComputedStyle(divGreen, ""); |
| 16 window.top.postMessage(window.name + " " + styleRed.color.toString() + " " +
styleGreen.color.toString(), "*"); |
| 17 }); |
| 18 </script> |
| 19 </body> |
| 20 </html> |
| OLD | NEW |