mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
Automatic update from web-platform-tests [css-cascade] Test "all" shorthand with "color" property (#22283) * Add reference * Add "all: inherit" test * Add "all: initial" test * Add "all: revert" test * Add "all: unset" test -- wpt-commits: 3712eda8757f15375fd10dd6531318a76acd1ec7 wpt-pr: 22283
9 lines
190 B
HTML
9 lines
190 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>Green text reference</title>
|
|
<style>
|
|
.test { color: green; }
|
|
</style>
|
|
<body>
|
|
<p class="test">Test passes if this text is green.</p>
|
|
</body>
|