forked from mirrors/gecko-dev
Nightly-only for now waiting on CSSWG discussion. Differential Revision: https://phabricator.services.mozilla.com/D199727
19 lines
582 B
HTML
19 lines
582 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS UI Level 4: getComputedStyle().userFind</title>
|
|
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/3460">
|
|
<meta name="assert" content="user-find computed value is as specified.">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/css/support/computed-testcommon.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="target"></div>
|
|
<script>
|
|
test_computed_value("user-find", "auto");
|
|
test_computed_value("user-find", "none");
|
|
</script>
|
|
</body>
|
|
</html>
|