custom-highlight-painting-iframe-003-ref.html (357B)
1 <!DOCTYPE html> 2 <meta charset="UTF-8"> 3 <style> 4 #span-doc { 5 color: green; 6 background-color: greenyellow; 7 } 8 </style> 9 <body> 10 <iframe 11 id="iframe" 12 srcdoc=" 13 <style> 14 span { 15 color: blue; 16 background-color: cyan; 17 } 18 </style> 19 <span id='span-iframe'>abc</span> 20 " 21 > 22 </iframe> 23 <br> 24 <span id="span-doc">abc</span>