Advertisement
Guest User

How to destroy every website

a guest
Dec 22nd, 2014
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var css = '* , *::after, *::before {overflow: scroll;display: block;min-width: 1px;min-height: 1px;transform: scale(1.1) rotate(5deg);}',
  2.     head = document.head || document.getElementsByTagName('head')[0],
  3.     style = document.createElement('style');
  4.  
  5. style.type = 'text/css';
  6. if (style.styleSheet){
  7.   style.styleSheet.cssText = css;
  8. } else {
  9.   style.appendChild(document.createTextNode(css));
  10. }
  11.  
  12. head.appendChild(style);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement