Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 9 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/the-button-element/interest-target/interesttarget-css-shorthands.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" href="mailto:masonf@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/shorthand-testcommon.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
<body>
<script>
test_shorthand_value('interest-target-delay', '0.23s 450ms', {
'interest-target-show-delay': '0.23s',
'interest-target-hide-delay': '450ms'
});
test_shorthand_value('interest-target-delay', '0.23s', {
'interest-target-show-delay': '0.23s',
'interest-target-hide-delay': '0.23s'
});
test_shorthand_value('interest-target-delay', '450ms', {
'interest-target-show-delay': '450ms',
'interest-target-hide-delay': '450ms'
});
test_invalid_value('interest-target-delay', '');
test_invalid_value('interest-target-delay', '0');
test_invalid_value('interest-target-delay', '0.23s 0.23s 0.23s');
</script>