tenfourfox/layout/reftests/generated-content/dynamic-button-01a.html

16 lines
226 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<style>
.test::after {
content:"::after content";
}
</style>
<button>
Button contents
</button>
<script>
var td = document.querySelector("button");
td.offsetWidth;
td.className = "test";
</script>