Title: [140540] trunk/Tools
Revision
140540
Author
[email protected]
Date
2013-01-23 10:02:28 -0800 (Wed, 23 Jan 2013)

Log Message

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

Patch by Andrei Bucur <[email protected]> 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:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (140539 => 140540)


--- trunk/Tools/ChangeLog	2013-01-23 17:57:26 UTC (rev 140539)
+++ trunk/Tools/ChangeLog	2013-01-23 18:02:28 UTC (rev 140540)
@@ -1,3 +1,19 @@
+2013-01-23  Andrei Bucur  <[email protected]>
+
+        [CSS Regions] Create Regions watchlist
+        https://bugs.webkit.org/show_bug.cgi?id=107281
+
+        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:
+
 2013-01-22  Pavel Feldman  <[email protected]>
 
         Web Inspector: only allow evaluateForTestInFrontend for front-ends under test.

Modified: trunk/Tools/Scripts/webkitpy/common/config/watchlist (140539 => 140540)


--- trunk/Tools/Scripts/webkitpy/common/config/watchlist	2013-01-23 17:57:26 UTC (rev 140539)
+++ trunk/Tools/Scripts/webkitpy/common/config/watchlist	2013-01-23 18:02:28 UTC (rev 140540)
@@ -333,7 +333,30 @@
         "ContentSecurityPolicyFiles": {
             "filename": r"Source/WebCore/page/(Content|DOM)SecurityPolicy\."
                         r"|LayoutTests/http/tests/security/contentSecurityPolicy"
-        }
+        },
+        "RegionsDevelopment": {
+            "filename": r"Source/WebCore/rendering/RenderRegion\.(h|cpp)"
+                        r"|Source/WebCore/rendering/RenderFlowThread\.(h|cpp)"
+                        r"|Source/WebCore/rendering/FlowThreadController\.(h|cpp)"
+                        r"|Source/WebCore/rendering/RenderRegionSet\.(h|cpp)"
+                        r"|Source/WebCore/rendering/RenderNamedFlowThread\.(h|cpp)"
+                        r"|Source/WebCore/rendering/RenderBoxRegionInfo\.h"
+                        r"|Source/WebCore/dom/WebKitNamedFlow\.(h|cpp|idl)"
+                        r"|Source/WebCore/dom/(DOM)?NamedFlowCollection\.(h|cpp|idl)"
+                        r"|Source/WebCore/css/WebKitCSSRegionRule\.(h|cpp|idl)"
+                        r"|LayoutTests/fast/regions",
+        },
+        "RegionsExpectationsMore": {
+            "filename": r"LayoutTests/platform/.*TestExpectations",
+            "more": r"fast/regions/.*\.html",
+        },
+        "RegionsExpectationsLess": {
+            "filename": r"LayoutTests/platform/.*TestExpectations",
+            "less": r"fast/regions/.*\.html",
+        },
+        "RegionsUsage": {
+            "more": r"(RenderRegion|RenderFlowThread|RenderNamedFlowThread)(?!\.(h|cpp))",
+        },
     },
     "CC_RULES": {
         # Note: All email addresses listed must be registered with bugzilla.
@@ -382,6 +405,7 @@
         "QtGraphics" : [ "[email protected]" ],
         "QtWebKit2PlatformSpecific": [ "[email protected]", "[email protected]", "[email protected]" ],
         "QtWebKit2PublicAPI": [ "[email protected]", "[email protected]", "[email protected]" ],
+        "RegionsDevelopment|RegionsExpectationsMore|RegionsExpectationsLess|RegionsUsage": [ "[email protected]" ],
         "Rendering": [ "[email protected]", "[email protected]" ],
         "RenderLayers" : [ "[email protected]" ],
         "SVG": ["[email protected]", "[email protected]", "[email protected]", "[email protected]" ],
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to