blob: 8dbe56600d22b2df93c0ba4de98e8e660dc1f7fe [file] [log] [blame]
<!doctype html>
<head>
<link rel="stylesheet" href="resources/style.css">
<link rel="stylesheet" href="resources/non_exist_style.css">
</head>
<body>
<p id="test">test</p>
</body>
<script>
const getTextColor = () => {
return getComputedStyle(
document.getElementById('test')).getPropertyValue('color');
}
</script>
</html>