https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d8ad96fc85ac31c9384658167571a71534db6ab5 authored by Marcos Cáceres on 18 September 2017, 06:35:29 UTC
Test PaymentDetailsUpdate error member
Tip revision: d8ad96f
HTMLElement.html
<!DOCTYPE html>
<html>
<head>
<title>Custom Elements: CEReactions on HTMLElement interface</title>
<meta name="author" title="Ryosuke Niwa" href="mailto:rniwa@webkit.org">
<meta name="assert" content="title, lang, translate, dir, hidden, tabIndex, accessKey, draggable, dropzone, contextMenu, spellcheck, innerText, and outerText of HTMLElement interface must have CEReactions">
<meta name="help" content="https://html.spec.whatwg.org/#htmlelement">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../resources/custom-elements-helpers.js"></script>
<script src="./resources/reactions.js"></script>
</head>
<body>
<div id="log"></div>
<script>

testReflectAttribute('title', 'title', 'foo', 'bar', 'title on HTMLElement');
testReflectAttribute('lang', 'lang', 'en', 'zh', 'lang on HTMLElement');
testReflectAttributeWithContentValues('translate', 'translate', true, 'yes', false, 'no', 'translate on HTMLElement');
testReflectAttribute('dir', 'dir', 'ltr', 'rtl', 'dir on HTMLElement');
testReflectBooleanAttribute('hidden', 'hidden', 'hidden on HTMLElement');
testReflectAttribute('tabIndex', 'tabindex', '0', '1', 'tabIndex on HTMLElement');
testReflectAttribute('accessKey', 'accesskey', 'a', 'b', 'accessKey on HTMLElement');
testReflectAttributeWithContentValues('draggable', 'draggable', true, 'true', false, 'false', 'draggable on HTMLElement');
testReflectAttribute('dropzone', 'dropzone', 'copy', 'move', 'dropzone on HTMLElement');
testReflectAttribute('contextMenu', 'contextmenu', 'menu1', 'menu2', 'contextMenu on HTMLElement');
testReflectAttributeWithContentValues('spellcheck', 'spellcheck', true, 'true', false, 'false', 'spellcheck on HTMLElement');

testNodeDisconnector(function (customElement) {
    customElement.parentNode.innerText = '';
}, 'innerText on HTMLElement');

if ('outerText' in HTMLElement.prototype) {
    // Not yet to be in the standard but all but Gecko supports this property: https://github.com/whatwg/html/issues/668
    testNodeDisconnector(function (customElement) {
        customElement.outerText = '';
    }, 'outerText on HTMLElement');
}

</script>
</body>
</html>
back to top