Files
AI/참고/playwright-main/tests/assets/csscoverage/multiple.html

9 lines
269 B
HTML
Raw Normal View History

2026-05-12 19:40:31 +09:00
<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>