Created
December 17, 2015 15:06
-
-
Save jasonmarlin/f7717ceb97696fa60646 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<style> | |
.test { color:white; overflow: hidden;} | |
.test::first-line { background:blue; } | |
</style> | |
<div id="spacer" style="display:none; height:3em;"></div> | |
<div class="test">PASS</div> | |
<p id="passCondition">Please wait...</p> | |
<script> | |
setTimeout(function() { | |
spacer.style.display = "block"; | |
passCondition.innerHTML = 'Above, the word "PASS" should be seen on a blue background.'; | |
}, 1000); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment