Changeset 155030 in webkit


Ignore:
Timestamp:
Sep 4, 2013 3:09:42 AM (11 years ago)
Author:
abucur@adobe.com
Message:

[CSS Regions] Fix failing tests on ML WK2 after r154973
https://bugs.webkit.org/show_bug.cgi?id=120672

Reviewed by Antti Koivisto.

The two tests are failing because the reference tests create backings for the fixed elements layers.
Regions are not yet accelerated, don't create backings and this difference of behaviour causes a
slight shift in the background color of the fixed elements.

  • fast/regions/fixed-inside-named-flow-zIndex-expected.html:
  • fast/regions/fixed-inside-named-flow-zIndex.html:
  • fast/regions/fixed-pos-region-in-nested-flow-expected.html:
  • fast/regions/fixed-pos-region-in-nested-flow.html:
Location:
trunk/LayoutTests
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r155029 r155030  
     12013-09-04  Andrei Bucur  <abucur@adobe.com>
     2
     3        [CSS Regions] Fix failing tests on ML WK2 after r154973
     4        https://bugs.webkit.org/show_bug.cgi?id=120672
     5
     6        Reviewed by Antti Koivisto.
     7
     8        The two tests are failing because the reference tests create backings for the fixed elements layers.
     9        Regions are not yet accelerated, don't create backings and this difference of behaviour causes a
     10        slight shift in the background color of the fixed elements.
     11
     12        * fast/regions/fixed-inside-named-flow-zIndex-expected.html:
     13        * fast/regions/fixed-inside-named-flow-zIndex.html:
     14        * fast/regions/fixed-pos-region-in-nested-flow-expected.html:
     15        * fast/regions/fixed-pos-region-in-nested-flow.html:
     16
    1172013-09-04  Zan Dobersek  <zdobersek@igalia.com>
    218
  • trunk/LayoutTests/fast/regions/fixed-inside-named-flow-zIndex-expected.html

    r154973 r155030  
    11<!DOCTYPE html>
    22<html>
     3    <script>
     4    if (window.internals)
     5        internals.settings.setAcceleratedCompositingForFixedPositionEnabled(false);
     6    </script>
    37    <head>
    48        <style>
  • trunk/LayoutTests/fast/regions/fixed-inside-named-flow-zIndex.html

    r154973 r155030  
    11<!DOCTYPE html>
    22<html>
     3    <script>
     4    if (window.internals)
     5        internals.settings.setAcceleratedCompositingForFixedPositionEnabled(false);
     6    </script>
    37    <head>
    48        <style>
  • trunk/LayoutTests/fast/regions/fixed-pos-region-in-nested-flow-expected.html

    r154973 r155030  
    22<html>
    33<head>
     4    <script>
     5    if (window.internals)
     6        internals.settings.setAcceleratedCompositingForFixedPositionEnabled(false);
     7    </script>
    48    <style>
    59        body {
  • trunk/LayoutTests/fast/regions/fixed-pos-region-in-nested-flow.html

    r154973 r155030  
    22<html>
    33<head>
     4    <script>
     5    if (window.internals)
     6        internals.settings.setAcceleratedCompositingForFixedPositionEnabled(false);
     7    </script>
    48    <style>
    59        body {
Note: See TracChangeset for help on using the changeset viewer.