https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 38a499047e6d71fa689f1f89205fc6c8f900142d authored by Anne van Kesteren on 11 April 2018, 10:54:54 UTC
XMLHttpRequest: align username/password test with the standard
Tip revision: 38a4990
box-shadow-inset-spread-without-border-radius.html
<!DOCTYPE html>
<html>
<head>
    <title>CSS Backgrounds and Borders Test: box-shadow</title>
    <link rel="author" title="Zhang Xiaochong" href="mailto:joy.xczhang@gmail.com">
    <link rel="help" href="http://www.w3.org/TR/css3-background/#the-box-shadow">
    <link rel="match" href="reference/box-shadow-inset-spread-without-border-radius.html">
    <meta name="assert" content="inset spread box-shadow should show shadow.">
    <style type="text/css">
        .container {
            position: relative;
        }
        .container div {
            position: absolute;
            height: 150px;
            width: 150px;
            left: 0;
            top: 0;
        }
        .container .test {
            box-shadow: red 10px 10px 0 10px inset;
        }
        .container .ref {
            background-color: green;
        }
    </style>
</head>
<body>
    <p>The test passes if there is a filled green square and no red.</p>
    <div class="container">
        <div class="test"></div>
        <div class="ref"></div>
    </div>
</body>
</html>
back to top