Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Modernizr.addTest('backgroundcliptext',function()
  2. {
  3. var div = document.createElement('div')
  4. div.style.webkitBackgroundClip = "text"
  5. var text = div.style.cssText.indexOf('text')
  6. if (text > 0) return true
  7. 'Webkit Moz O ms Khtml'.replace(/([A-Za-z]*)/g,function(val)
  8. {
  9. if (val+'BackgroundClip' in div.style) return true;
  10. })
  11. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement