mix-blend-mode-paragraph-ref.html (747B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test: Paragraph element with mix-blend-mode.</title> 5 <link rel="author" title="Mihai Tica" href="mailto:mitica@adobe.com"> 6 <meta name="assert" content="Test checks that test a paragraph element blends with the parent element."> 7 <style type="text/css"> 8 div { 9 width: 100px; 10 height: 100px; 11 background: #FF0; 12 } 13 14 #blender { 15 color: #0F0; 16 } 17 </style> 18 </head> 19 <body> 20 <p>Test passes if the paragraph text is drawn with green.</p> 21 <div> 22 <p id="blender">This should be drawn with green.</p> 23 </div> 24 </body> 25 </html>