Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/replaced-elements/the-select-element/select-text-decoration.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Text decoration should not propagate into select elements by default</title>
<link rel="author" title="Simon Wülker" href="mailto:simon.wuelker@arcor.de">
<link rel="match" href="select-text-decoration-ref.html">
<style>
body {
color: red;
text-decoration: underline;
}
</style>
</head>
<body>
<select>
<option>Foobar</option>
</select>
</body>
</html>