HTMLMapElement.html (789B)
1 <!DOCTYPE html> 2 <title>Custom Elements: CEReactions on HTMLMapElement interface</title> 3 <link rel="author" title="Intel" href="http://www.intel.com"> 4 <meta name="assert" content="name of HTMLMapElement interface must have CEReactions"> 5 <meta name="help" content="https://html.spec.whatwg.org/#the-map-element"> 6 <script src="/resources/testharness.js"></script> 7 <script src="/resources/testharnessreport.js"></script> 8 <script src="../../resources/custom-elements-helpers.js"></script> 9 <script src="../resources/reactions.js"></script> 10 11 <img usemap="#yellow" src="/images/yellow.png" alt="yellow pic"> 12 <img usemap="#green" src="/images/green.png" alt="green pic"> 13 <script> 14 15 testReflectAttribute('name', 'name', 'yellow', 'green', 'name on HTMLMapElement', 'map', HTMLMapElement); 16 17 </script>