summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/assets/csscoverage/multiple.html
diff options
context:
space:
mode:
Diffstat (limited to 'remote/test/puppeteer/test/assets/csscoverage/multiple.html')
-rw-r--r--remote/test/puppeteer/test/assets/csscoverage/multiple.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/remote/test/puppeteer/test/assets/csscoverage/multiple.html b/remote/test/puppeteer/test/assets/csscoverage/multiple.html
new file mode 100644
index 0000000000..0fd97e962a
--- /dev/null
+++ b/remote/test/puppeteer/test/assets/csscoverage/multiple.html
@@ -0,0 +1,8 @@
+<link rel="stylesheet" href="stylesheet1.css">
+<link rel="stylesheet" href="stylesheet2.css">
+<script>
+window.addEventListener('DOMContentLoaded', () => {
+ // Force stylesheets to load.
+ console.log(window.getComputedStyle(document.body).color);
+}, false);
+</script>