[css-ui] Correct property name

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.
diff --git a/css/css-ui/appearance-menulist-button-002.html b/css/css-ui/appearance-menulist-button-002.html
index 0477f2d..60a4312 100644
--- a/css/css-ui/appearance-menulist-button-002.html
+++ b/css/css-ui/appearance-menulist-button-002.html
@@ -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>
diff --git a/css/css-ui/webkit-appearance-menulist-button-002.html b/css/css-ui/webkit-appearance-menulist-button-002.html
index c8d6150..078d568 100644
--- a/css/css-ui/webkit-appearance-menulist-button-002.html
+++ b/css/css-ui/webkit-appearance-menulist-button-002.html
@@ -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>