зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
347 B
HTML
17 строки
347 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
span { color: red; }
|
|
:-moz-any(:valid) + span { color: green; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<input required><span>This should be green</span>
|
|
<script>
|
|
document.body.offsetWidth;
|
|
document.getElementsByTagName("input")[0].value = "Test"
|
|
</script>
|
|
</body>
|
|
</html>
|