534526-1a.html (298B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 span { color: green; } 6 [style*=red] + * { color: red; } 7 </style> 8 </head> 9 <body onload="document.getElementById('x').style.color = 'blue'"> 10 <span id="x" style="color: red"></span><span>This should be green</span> 11 </body> 12 </html>