embed-represent-nothing-03.html (670B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>HTML Test: The embed element represents nothing when it has a media ancestor</title> 4 <link rel="author" title="Intel" href="http://www.intel.com"> 5 <link rel="help" href="https://html.spec.whatwg.org/multipage/#the-embed-element"> 6 <link rel="match" href="embed-represent-nothing-ref.html"> 7 <meta name="assert" content="Check if the embed element represents nothing when it has a media ancestor"> 8 <style> 9 embed { 10 background-color: red; 11 height: 100px; 12 width: 100px; 13 } 14 </style> 15 <body> 16 <p>Test passes if there is <strong>no red</strong>.</p> 17 <video> 18 <embed src="/images/red-16x16.png"> 19 </video> 20 </body>