Revision 246e6e68552a94a85be3810cbe3c82c50fbcca39 authored by Darren Shen on 11 April 2018, 05:55:17 UTC, committed by Chromium WPT Sync on 11 April 2018, 05:55:17 UTC
Test failures:
- scroll-snap-align should always compute to a pair (but we currently
  compute to single keyword if specified).
- scroll-snap-type should compute to as specified (but we currently
  compute to pair).

Bug: 820299
Change-Id: Id38cee967daef8ac5c0658b958d6e74445035a83
Reviewed-on: https://chromium-review.googlesource.com/999078
Reviewed-by: Rune Lillesveen <futhark@chromium.org>
Commit-Queue: Darren Shen <shend@chromium.org>
Cr-Commit-Position: refs/heads/master@{#549778}
1 parent 2e8fa7b
Raw File
transforms-rotateY-degree-60.html
<!DOCTYPE html>
<html>
<head>
    <title>CSS Transforms Test: transform property with rotate function and one parameter</title>
    <link rel="author" title="Ji Kai" href="mailto:7jikai@gmail.com">
    <link rel="reviewer" title="Dayang Shen" href="mailto:shendayang@baidu.com"> <!-- 2013-09-04 -->
    <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-property">
    <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#two-d-transform-functions">
    <link rel="match" href="reference/transforms-rotateY-degree-60-ref.html">
    <style>
        div {
            position: absolute;
            top: 100px;
            left: 100px;
            height: 100px;
            width: 100px;
        }

        .transformed {
            background-color: white;
            transform: rotateY(60deg);
        }

        .back {
            background-color: green;
        }
    </style>
</head>
<body>
    <p>The test passes if there are two green rectangles.</p>
    <div class="back"></div>
    <div class="transformed"></div>
</body>
</html>
back to top