Changeset 140540 in webkit


Ignore:
Timestamp:
Jan 23, 2013 10:02:28 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[CSS Regions] Create Regions watchlist
https://bugs.webkit.org/show_bug.cgi?id=107281

Patch by Andrei Bucur <abucur@adobe.com> on 2013-01-23
Reviewed by Adam Barth.

This patch adds 4 new definitions:

  • RegionsDevelopment - used to track the development progress for regions
  • RegionsExpectationsMore and RegionsExpectationsLess - used to track expectations changes for the regions tests
  • RegionsUsage - used to track changes that make use of regions in all the code base

For now, the Adobe internal tracker is the only email address listening for these patterns.

  • Scripts/webkitpy/common/config/watchlist:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r140539 r140540  
     12013-01-23  Andrei Bucur  <abucur@adobe.com>
     2
     3        [CSS Regions] Create Regions watchlist
     4        https://bugs.webkit.org/show_bug.cgi?id=107281
     5
     6        Reviewed by Adam Barth.
     7
     8        This patch adds 4 new definitions:
     9        - RegionsDevelopment - used to track the development progress for regions
     10        - RegionsExpectationsMore and RegionsExpectationsLess - used to track expectations changes for the regions tests
     11        - RegionsUsage - used to track changes that make use of regions in all the code base
     12
     13        For now, the Adobe internal tracker is the only email address listening for these patterns.
     14
     15        * Scripts/webkitpy/common/config/watchlist:
     16
    1172013-01-22  Pavel Feldman  <pfeldman@chromium.org>
    218
  • trunk/Tools/Scripts/webkitpy/common/config/watchlist

    r139129 r140540  
    334334            "filename": r"Source/WebCore/page/(Content|DOM)SecurityPolicy\."
    335335                        r"|LayoutTests/http/tests/security/contentSecurityPolicy"
    336         }
     336        },
     337        "RegionsDevelopment": {
     338            "filename": r"Source/WebCore/rendering/RenderRegion\.(h|cpp)"
     339                        r"|Source/WebCore/rendering/RenderFlowThread\.(h|cpp)"
     340                        r"|Source/WebCore/rendering/FlowThreadController\.(h|cpp)"
     341                        r"|Source/WebCore/rendering/RenderRegionSet\.(h|cpp)"
     342                        r"|Source/WebCore/rendering/RenderNamedFlowThread\.(h|cpp)"
     343                        r"|Source/WebCore/rendering/RenderBoxRegionInfo\.h"
     344                        r"|Source/WebCore/dom/WebKitNamedFlow\.(h|cpp|idl)"
     345                        r"|Source/WebCore/dom/(DOM)?NamedFlowCollection\.(h|cpp|idl)"
     346                        r"|Source/WebCore/css/WebKitCSSRegionRule\.(h|cpp|idl)"
     347                        r"|LayoutTests/fast/regions",
     348        },
     349        "RegionsExpectationsMore": {
     350            "filename": r"LayoutTests/platform/.*TestExpectations",
     351            "more": r"fast/regions/.*\.html",
     352        },
     353        "RegionsExpectationsLess": {
     354            "filename": r"LayoutTests/platform/.*TestExpectations",
     355            "less": r"fast/regions/.*\.html",
     356        },
     357        "RegionsUsage": {
     358            "more": r"(RenderRegion|RenderFlowThread|RenderNamedFlowThread)(?!\.(h|cpp))",
     359        },
    337360    },
    338361    "CC_RULES": {
     
    383406        "QtWebKit2PlatformSpecific": [ "alexis@webkit.org", "cmarcelo@webkit.org", "abecsi@webkit.org" ],
    384407        "QtWebKit2PublicAPI": [ "alexis@webkit.org", "cmarcelo@webkit.org", "abecsi@webkit.org" ],
     408        "RegionsDevelopment|RegionsExpectationsMore|RegionsExpectationsLess|RegionsUsage": [ "WebkitBugTracker@adobe.com" ],
    385409        "Rendering": [ "eric@webkit.org", "ojan.autocc@gmail.com" ],
    386410        "RenderLayers" : [ "simon.fraser@apple.com" ],
Note: See TracChangeset for help on using the changeset viewer.