https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e763335602af9b981c691f4c66eff25ef46bdea7 authored by Marcos Cáceres on 07 September 2018, 07:56:16 UTC
Add defaults to PaymentMethodChangeEventInit's members.
Tip revision: e763335
user-invalid.html
<!doctype html>
<title>Support for the :user-invalid pseudo-class</title>
<link rel="help" href="https://drafts.csswg.org/selectors/#user-pseudos">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<input>
<script>
test(() => {
  const input = document.querySelector('input');
  // The selector can't match because no interaction has happened.
  assert_false(input.matches(':user-invalid'));
}, ':user-invalid selector should be supported');

// historical: https://github.com/w3c/csswg-drafts/issues/1329
test(() => {
  const input = document.querySelector('input');
  // matches() will throw if the selector isn't suppported
  assert_throws("SyntaxError", () => input.matches(':user-error'));
}, ':user-error selector should not be supported');
</script>
back to top