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
table { | |
width: 600px; | |
} | |
table thead tr th { | |
text-align: center; | |
font-weight: bold; | |
} | |
table tbody tr:nth-child(odd) { | |
background-color: #fff; | |
} |
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
env_with_src : function() { | |
var | |
html = "<html><body><p>hello world!</p></body></html>", | |
src = "window.attachedHere = 123"; | |
jsdom.env({ | |
html : html, | |
src : src, | |
done : function(errors, window) { | |
assertNull("error should not be null", errors); |
NewerOlder