Changeset 197540 in webkit


Ignore:
Timestamp:
Mar 3, 2016 6:26:36 PM (8 years ago)
Author:
Simon Fraser
Message:

Fix an image resource URL in tiled scrolling tests
https://bugs.webkit.org/show_bug.cgi?id=154981

Reviewed by Tim Horton.

These tests had an incorrect url to compositing/resources/simple_image.png.

  • tiled-drawing/scrolling/fixed-background/fixed-background-composited-expected.html:
  • tiled-drawing/scrolling/fixed-background/fixed-background-composited.html:
  • tiled-drawing/scrolling/fixed-background/fixed-background-negative-z-index-fixed-expected.html:
  • tiled-drawing/scrolling/fixed-background/fixed-background-negative-z-index-fixed.html:
  • tiled-drawing/scrolling/fixed-background/fixed-body-background-body-layer.html:
  • tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity.html:
  • tiled-drawing/scrolling/fixed-background/fixed-body-background-positioned.html:
  • tiled-drawing/scrolling/fixed-background/fixed-body-background-transformed.html:
  • tiled-drawing/scrolling/fixed-background/fixed-body-background-zoomed.html:
  • tiled-drawing/scrolling/fixed-background/fixed-body-background.html:
  • tiled-drawing/scrolling/fixed-background/fixed-html-background.html:
  • tiled-drawing/scrolling/fixed-background/fixed-non-propagated-body-background.html:
Location:
trunk/LayoutTests
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r197536 r197540  
     12016-03-03  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Fix an image resource URL in tiled scrolling tests
     4        https://bugs.webkit.org/show_bug.cgi?id=154981
     5
     6        Reviewed by Tim Horton.
     7       
     8        These tests had an incorrect url to compositing/resources/simple_image.png.
     9
     10        * tiled-drawing/scrolling/fixed-background/fixed-background-composited-expected.html:
     11        * tiled-drawing/scrolling/fixed-background/fixed-background-composited.html:
     12        * tiled-drawing/scrolling/fixed-background/fixed-background-negative-z-index-fixed-expected.html:
     13        * tiled-drawing/scrolling/fixed-background/fixed-background-negative-z-index-fixed.html:
     14        * tiled-drawing/scrolling/fixed-background/fixed-body-background-body-layer.html:
     15        * tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity.html:
     16        * tiled-drawing/scrolling/fixed-background/fixed-body-background-positioned.html:
     17        * tiled-drawing/scrolling/fixed-background/fixed-body-background-transformed.html:
     18        * tiled-drawing/scrolling/fixed-background/fixed-body-background-zoomed.html:
     19        * tiled-drawing/scrolling/fixed-background/fixed-body-background.html:
     20        * tiled-drawing/scrolling/fixed-background/fixed-html-background.html:
     21        * tiled-drawing/scrolling/fixed-background/fixed-non-propagated-body-background.html:
     22
    1232016-03-03  Keith Miller  <keith_miller@apple.com>
    224
  • trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-background-composited-expected.html

    r187905 r197540  
    99        body {
    1010            height: 2000px;
    11             background-image: url('../../compositing/resources/simple_image.png');
     11            background-image: url('../../../compositing/resources/simple_image.png');
    1212            background-size: 200px 200px;
    1313            background-attachment: fixed;
  • trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-background-composited.html

    r187905 r197540  
    99        body {
    1010            height: 2000px;
    11             background-image: url('../../compositing/resources/simple_image.png');
     11            background-image: url('../../../compositing/resources/simple_image.png');
    1212            background-size: 200px 200px;
    1313            background-attachment: fixed;
  • trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-background-negative-z-index-fixed-expected.html

    r187905 r197540  
    66        body {
    77            height: 2000px;
    8             background-image: url('../../compositing/resources/simple_image.png');
     8            background-image: url('../../../compositing/resources/simple_image.png');
    99            background-size: 200px 200px;
    1010            background-attachment: fixed;
  • trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-background-negative-z-index-fixed.html

    r187905 r197540  
    66        body {
    77            height: 2000px;
    8             background-image: url('../../compositing/resources/simple_image.png');
     8            background-image: url('../../../compositing/resources/simple_image.png');
    99            background-size: 200px 200px;
    1010            background-attachment: fixed;
  • trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-body-layer.html

    r187905 r197540  
    77            margin: 100px;
    88            height: 1500px;
    9             background-image: url('../../compositing/resources/simple_image.png');
     9            background-image: url('../../../compositing/resources/simple_image.png');
    1010            background-size: 200px 200px;
    1111            background-attachment: fixed;
  • trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity.html

    r187905 r197540  
    1010            margin: 100px;
    1111            height: 1500px;
    12             background-image: url('../../compositing/resources/simple_image.png');
     12            background-image: url('../../../compositing/resources/simple_image.png');
    1313            background-size: 200px 200px;
    1414            background-attachment: fixed;
  • trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-positioned.html

    r187905 r197540  
    77            margin: 100px;
    88            height: 3500px;
    9             background-image: url('../../compositing/resources/simple_image.png');
     9            background-image: url('../../../compositing/resources/simple_image.png');
    1010            background-size: 200px 200px;
    1111            background-attachment: fixed;
  • trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-transformed.html

    r187905 r197540  
    1010            margin: 100px;
    1111            height: 1500px;
    12             background-image: url('../../compositing/resources/simple_image.png');
     12            background-image: url('../../../compositing/resources/simple_image.png');
    1313            background-size: 200px 200px;
    1414            background-attachment: fixed;
  • trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-zoomed.html

    r187905 r197540  
    77            margin: 100px;
    88            height: 1500px;
    9             background-image: url('../../compositing/resources/simple_image.png');
     9            background-image: url('../../../compositing/resources/simple_image.png');
    1010            background-size: 200px 200px;
    1111            background-attachment: fixed;
  • trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background.html

    r187905 r197540  
    77            margin: 100px;
    88            height: 1500px;
    9             background-image: url('../../compositing/resources/simple_image.png');
     9            background-image: url('../../../compositing/resources/simple_image.png');
    1010            background-size: 200px 200px;
    1111            background-attachment: fixed;
  • trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-html-background.html

    r187905 r197540  
    55    <style>
    66        html {
    7             background-image: url('../../compositing/resources/simple_image.png');
     7            background-image: url('../../../compositing/resources/simple_image.png');
    88            background-size: 200px 200px;
    99            background-attachment: fixed;
  • trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-non-propagated-body-background.html

    r187905 r197540  
    1010            margin: 100px;
    1111            height: 1500px;
    12             background-image: url('../../compositing/resources/simple_image.png');
     12            background-image: url('../../../compositing/resources/simple_image.png');
    1313            background-size: 200px 200px;
    1414            background-attachment: fixed;
Note: See TracChangeset for help on using the changeset viewer.