HTMLQuoteElement.html (917B)
1 <!DOCTYPE html> 2 <title>Custom Elements: CEReactions on HTMLQuoteElement interface</title> 3 <link rel="author" title="Intel" href="http://www.intel.com"> 4 <meta name="assert" content="cite of HTMLQuoteElement interface must have CEReactions"> 5 <meta name="help" content="https://html.spec.whatwg.org/#the-blockquote-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 <script> 12 13 testReflectAttribute('cite', 'cite', '../resources/custom-elements-helpers.js', './resources/reactions.js', 'cite on blockquote use HTMLQuoteElement', 'blockquote', HTMLQuoteElement); 14 testReflectAttribute('cite', 'cite', '../resources/custom-elements-helpers.js', './resources/reactions.js', 'cite on q use HTMLQuoteElement', 'q', HTMLQuoteElement); 15 16 </script>