Title: [109095] trunk/Tools
Revision
109095
Author
[email protected]
Date
2012-02-28 02:55:28 -0800 (Tue, 28 Feb 2012)

Log Message

Update a pattern for forms files of watchlist
https://bugs.webkit.org/show_bug.cgi?id=79767

Reviewed by Kentaro Hara.

* Scripts/webkitpy/common/config/watchlist:
Catches the following files with the "Forms" pattern.
- HTMLDatListElement.*
- HTMLKeygenElement.*
- HTMLLegendElement.*
- HTMLOutputElement.*
- FormAssociatedElement.*
- SliderThumbElement.*
- TextControlInnerElements.*
- RenderFileUploadControl.*

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (109094 => 109095)


--- trunk/Tools/ChangeLog	2012-02-28 10:42:03 UTC (rev 109094)
+++ trunk/Tools/ChangeLog	2012-02-28 10:55:28 UTC (rev 109095)
@@ -1,3 +1,21 @@
+2012-02-28  Kent Tamura  <[email protected]>
+
+        Update a pattern for forms files of watchlist
+        https://bugs.webkit.org/show_bug.cgi?id=79767
+
+        Reviewed by Kentaro Hara.
+
+        * Scripts/webkitpy/common/config/watchlist:
+        Catches the following files with the "Forms" pattern.
+        - HTMLDatListElement.*
+        - HTMLKeygenElement.*
+        - HTMLLegendElement.*
+        - HTMLOutputElement.*
+        - FormAssociatedElement.*
+        - SliderThumbElement.*
+        - TextControlInnerElements.*
+        - RenderFileUploadControl.*
+
 2012-02-27  Sheriff Bot  <[email protected]>
 
         Unreviewed, rolling out r109041.

Modified: trunk/Tools/Scripts/webkitpy/common/config/watchlist (109094 => 109095)


--- trunk/Tools/Scripts/webkitpy/common/config/watchlist	2012-02-28 10:42:03 UTC (rev 109094)
+++ trunk/Tools/Scripts/webkitpy/common/config/watchlist	2012-02-28 10:55:28 UTC (rev 109095)
@@ -28,10 +28,12 @@
             "filename": r"Source/WebCore/bindings/objc/PublicDOMInterfaces.h"
         },
         "Forms": {
-            "filename": r"Source/WebCore/html/HTML(FieldSet|Form|FormControl|Input|Label"
-                        r"|OptGroup|Option|Select|TextArea|TextFormControl)Element\."
+            "filename": r"Source/WebCore/html/HTML(DataList|FieldSet|Form|FormControl|Input|Keygen|Label"
+                        r"|Legend|OptGroup|Option|Output|Select|TextArea|TextFormControl)Element\."
+                        r"|Source/WebCore/html/FormAssociatedElement\."
                         r"|Source/WebCore/html/\w*InputType\."
-                        r"|Source/WebCore/rendering/Render(ListBox|MenuList|Slider|TextControl"
+                        r"|Source/WebCore/html/shadow/(SliderThumbElement|TextControlInnerElements)\."
+                        r"|Source/WebCore/rendering/Render(FileUploadControl|ListBox|MenuList|Slider|TextControl"
                         r"|TextControlMultiLine|TextControlSingleLine)\."
         },
         "GStreamerGraphics": {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to