Skip to content

Commit

Permalink
[css-ui] Correct property name
Browse files Browse the repository at this point in the history
The test for the `appearance` property mistakenly referred to the vendor
prefixed version, `-webkit-appearance`. In addition to contradicting the
test name and metadata, this caused the test intended for
`-webkit-appearance` to reference the non-existent property
`-webkit--webkit-appearance`.

Correct both tests, using the suite's build process to generate the
`-webkit-appearance` test from the corrected version of the `appearance`
test.
  • Loading branch information
jugglinmike authored and zcorpan committed May 29, 2019
1 parent aa5e01d commit 1ec27af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion css/css-ui/appearance-menulist-button-002.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<link rel="mismatch" href="appearance-auto-ref.html">
<style>
#container { width: 500px; }
#container > #drop-down-select { -webkit-appearance: none; -webkit-appearance: menulist-button; }
#container > #drop-down-select { appearance: none; appearance: menulist-button; }
</style>
<div id="container">
<a>a</a>
Expand Down
2 changes: 1 addition & 1 deletion css/css-ui/webkit-appearance-menulist-button-002.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<link rel="mismatch" href="appearance-auto-ref.html">
<style>
#container { width: 500px; }
#container > #drop-down-select { -webkit--webkit-appearance: none; -webkit--webkit-appearance: menulist-button; }
#container > #drop-down-select { -webkit-appearance: none; -webkit-appearance: menulist-button; }
</style>
<div id="container">
<a>a</a>
Expand Down

0 comments on commit 1ec27af

Please sign in to comment.