Tests/LibWeb: Add opacity-stacking.html test to manifest.json
(Also explicitly set the background color)
This commit is contained in:
parent
9006c7aece
commit
4e49aee545
Notes:
sideshowbarker
2024-07-17 02:05:41 +09:00
Author: https://github.com/MacDue Commit: https://github.com/SerenityOS/serenity/commit/4e49aee545 Pull-request: https://github.com/SerenityOS/serenity/pull/20579
3 changed files with 12 additions and 1 deletions
Tests/LibWeb/Ref
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"square-flex.html": "square-ref.html",
|
||||
"separate-borders-inline-table.html": "separate-borders-ref.html"
|
||||
"separate-borders-inline-table.html": "separate-borders-ref.html",
|
||||
"opacity-stacking.html": "opacity-stacking-ref.html"
|
||||
}
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
<style>
|
||||
body {
|
||||
background-color: white;
|
||||
}
|
||||
</style>
|
||||
<svg width="600" viewBox="0 0 150 100" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="100" cy="50" r="40" fill="#b3b3b3" />
|
||||
<circle cx="50" cy="50" r="40" fill="blue" />
|
||||
|
|
Before (image error) Size: 182 B After (image error) Size: 241 B |
|
@ -1,3 +1,8 @@
|
|||
<style>
|
||||
body {
|
||||
background-color: white;
|
||||
}
|
||||
</style>
|
||||
<svg width="600" viewBox="0 0 150 100" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="100" cy="50" r="40" fill="black" opacity="0.3" />
|
||||
<circle cx="50" cy="50" r="40" fill="blue" />
|
||||
|
|
Before (image error) Size: 194 B After (image error) Size: 253 B |
Loading…
Add table
Reference in a new issue