Testing for non-prefixed box-shadow

https://github.com/paulirish/css3please/issues/67

by drublic

HTML

<div id="w/prefix">prefixed</div>
<div id="wo/prefix">non-prefixed</div>

CSS

#w\/prefix {
    -webkit-border-radius: 10px;
    -webkit-box-shadow: 5px 0 5px #000;
}

#wo\/prefix {
    border-radius: 10px;
    box-shadow: 5px 0 5px #000;
}



div {
    width: 100px;
    background: #eee;
    border: 1px solid #888;
    text-align: center;
    padding: 20px;
    margin: 10px;
}