Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /compat/webkit-scrollbar-parse.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>::-webkit-scrollbar must parse for web-compat</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style id="s"></style>
<script>
'use strict';
test(() => {
const sheet = document.getElementById("s").sheet;
sheet.insertRule("#x::-webkit-scrollbar { display: none; }");
}, "insertRule() with ::-webkit-scrollbar must not throw");
</script>