14 lines
326 B
HTML
14 lines
326 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<select>
|
|
<option selected>Text<option>
|
|
</select>
|
|
<script>
|
|
onload = function() {
|
|
var s = document.querySelector("select");
|
|
window.w = s.offsetWidth;
|
|
s.style.textIndent = "15px";
|
|
document.documentElement.className = "";
|
|
}
|
|
</script>
|
|
</html>
|