Changeset 224317 in webkit


Ignore:
Timestamp:
Nov 1, 2017 9:17:36 PM (6 years ago)
Author:
jonlee@apple.com
Message:

Add about page for MotionMark
https://bugs.webkit.org/show_bug.cgi?id=179152

Reviewed by Ryosuke Niwa.

  • MotionMark/about.html: Added.
  • MotionMark/index.html:
  • MotionMark/resources/runner/motionmark.css:
Location:
trunk/PerformanceTests
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/PerformanceTests/ChangeLog

    r224197 r224317  
     12017-11-01  Jon Lee  <jonlee@apple.com>
     2
     3        Add about page for MotionMark
     4        https://bugs.webkit.org/show_bug.cgi?id=179152
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * MotionMark/about.html: Added.
     9        * MotionMark/index.html:
     10        * MotionMark/resources/runner/motionmark.css:
     11
    1122017-10-30  Michael Saboff  <msaboff@apple.com>
    213
  • trunk/PerformanceTests/MotionMark/index.html

    r210459 r224317  
    3131            <div class="body">
    3232                <p>MotionMark is a graphics benchmark that measures a browser’s capability to animate complex scenes at a target frame rate.</p>
     33
     34                <p><a href="about.html">More details</a> about the benchmark are available. Bigger scores are better.</p>
    3335                <p>For accurate results, please take your browser window full screen, or rotate your device to landscape orientation.</p>
    3436                <p class="portrait-orientation-check"><b>Please rotate your device.</b></p>
  • trunk/PerformanceTests/MotionMark/resources/runner/motionmark.css

    r210459 r224317  
    279279}
    280280
    281 /* Intro section */
     281/* Intro section, About page */
     282
     283#intro, #about {
     284    padding: 2em;
     285}
    282286
    283287#intro {
    284     padding: 2em;
    285288    opacity: 0;
    286289    transition: opacity 500ms ease-in;
     
    289292body.images-loaded #intro {
    290293    opacity: 1;
     294}
     295
     296#about .body {
     297    transform: none;
     298    margin: 0;
     299    max-width: initial;
     300}
     301
     302#about li {
     303    line-height: 1.5em;
     304}
     305
     306#about button {
     307    padding: .75em 2em;
     308    margin: 1.5em auto 0;
     309    min-width: initial;
     310    transform: skewX(-10deg);
     311}
     312
     313@media screen and (min-width: 667px) {
     314    #about .body {
     315        font-size: .7em;
     316        margin: 1em;
     317    }
     318
     319    #about ol, #about ul {
     320        padding-left: 3em;
     321    }
     322}
     323
     324
     325#intro a, #about a,
     326#intro a:visited, #about a:visited {
     327    color: black;
    291328}
    292329
Note: See TracChangeset for help on using the changeset viewer.