-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathblock-skipping.html
More file actions
17 lines (14 loc) · 544 Bytes
/
Copy pathblock-skipping.html
File metadata and controls
17 lines (14 loc) · 544 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!doctype html>
<title>CSS Nesting bug: Block ignored after lack of whitespace</title>
<link rel="help" href="https://crbug.com/362674384">
<link rel="stylesheet" href="block-skipping.css"> <!-- Bug only manifests in external stylesheets. -->
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div class="test">
<span id="target">Test passes if this text is green.</span>
</div>
<script>
test(() => {
assert_equals(getComputedStyle(target).color, 'rgb(0, 128, 0)');
});
</script>