mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-01 11:39:27 +00:00
16 lines
226 B
HTML
16 lines
226 B
HTML
<!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>
|