Comments
Comments so far. Add yours.
Name...
javascript: (function() {
var i = 0,
r = function(n) {
return Math.floor(Math.random() * n)
}, f = document.getElementsByTagName('body')[0].getElementsByTagName('*'),
o = function(e) {
return typeof(e.style) == 'object' && e.tagName != 'SCRIPT'
}, s = function() {
while (!o(e = f[r(f.length)])) {}
return e.style
};
while (i++ < 5) {
s().display = r(2) ? 'block' : 'inline';
s().position = r(2) ? 'absolute' : 'relative';
s().margin = r(2) ? '0' : '1em';
s().padding = r(2) ? '0' : '1em';
s().width = r(2) ? '' : 'auto';
}
})();