gecko-dev/testing/web-platform/tests/scroll-to-text-fragment/scroll-to-text-fragment-api.html
Nick Burris a2aa2ec116 Bug 1594269 [wpt PR 20105] - Improve scroll to text WPT coverage., a=testonly
Automatic update from web-platform-tests
Improve scroll to text WPT coverage.

Adds many tests to the scroll to text WPT suite:
- Setting window.location.fragmentDirective has no effect
- All combinations of optional parameters in text directive
- Matching TextMatchChars and PercentEncodedChars (in particular the
  syntactical characters '&', ‘,’ and ‘-’) including non-ASCII
- Multiple matches in the page
- Cross-whitespace/node matching (i.e. context terms and match terms
  can be separated by whitespace and node boundaries)

Also added a readable description to each test case.

Note all tests pass in Chrome except for non-ASCII character matching.

Change-Id: I2a692049ba81bef5412e7b73909fbcdc710eb0da
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1900648
Commit-Queue: Nick Burris <nburris@chromium.org>
Reviewed-by: David Bokan <bokan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#713057}

--

wpt-commits: 186457c2f6c0f52d9939cddeefeaebcff38d681b
wpt-pr: 20105
2019-11-29 10:55:52 +00:00

32 lines
1.2 KiB
HTML

<!doctype html>
<title>Fragment directive API</title>
<meta charset=utf-8>
<link rel="help" href="https://wicg.github.io/ScrollToTextFragment/">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script>
test(t => {
assert_equals(typeof(window.location.fragmentDirective), 'object', 'window.location.fragmentDirective is defined');
}, 'Scroll to text is feature detectable via window.location.fragmentDirective');
test(t =>{
window.location.fragmentDirective = 'text=test';
assert_equals(window.scrollY, 0, 'Setting window.location.fragmentDirective did not have an effect on scroll position');
assert_equals(typeof(window.location.fragmentDirective), 'object', 'window.location.fragmentDirective is still an object type');
assert_equals(Object.keys(window.location.fragmentDirective).length, 0, 'window.location.fragmentDirective has no properties');
}, 'Setting window.location.fragmentDirective has no effect');
</script>
<style>
body {
height: 3200px;
}
#text {
position: absolute;
top: 3000px;
}
</style>
<body>
<p id="text">This is a test page</p>
</body>