Title: [150352] trunk/Tools
Revision
150352
Author
[email protected]
Date
2013-05-19 11:40:28 -0700 (Sun, 19 May 2013)

Log Message

Unreviewed, addressing test-webkitpy failures after r150317.

* Scripts/webkitpy/w3c/test_converter.py:
(W3CTestConverter.read_webkit_prefixed_css_property_list): CssPropertyNames.in doesn't exist, but CSSPropertyNames.in does.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (150351 => 150352)


--- trunk/Tools/ChangeLog	2013-05-19 15:40:16 UTC (rev 150351)
+++ trunk/Tools/ChangeLog	2013-05-19 18:40:28 UTC (rev 150352)
@@ -1,3 +1,10 @@
+2013-05-19  Zan Dobersek  <[email protected]>
+
+        Unreviewed, addressing test-webkitpy failures after r150317.
+
+        * Scripts/webkitpy/w3c/test_converter.py:
+        (W3CTestConverter.read_webkit_prefixed_css_property_list): CssPropertyNames.in doesn't exist, but CSSPropertyNames.in does.
+
 2013-05-18  Patrick Gansterer  <[email protected]>
 
         [CMake] Replace *_LIBRARY_NAME with *_OUTPUT_NAME

Modified: trunk/Tools/Scripts/webkitpy/w3c/test_converter.py (150351 => 150352)


--- trunk/Tools/Scripts/webkitpy/w3c/test_converter.py	2013-05-19 15:40:16 UTC (rev 150351)
+++ trunk/Tools/Scripts/webkitpy/w3c/test_converter.py	2013-05-19 18:40:28 UTC (rev 150352)
@@ -48,7 +48,7 @@
     def read_webkit_prefixed_css_property_list(self):
         prefixed_properties = []
 
-        contents = self._filesystem.read_text_file(self.path_from_webkit_root('Source', 'WebCore', 'css', 'CssPropertyNames.in'))
+        contents = self._filesystem.read_text_file(self.path_from_webkit_root('Source', 'WebCore', 'css', 'CSSPropertyNames.in'))
         for line in contents.splitlines():
             # Find lines starting with the -webkit- prefix.
             match = re.match('-webkit-[\w|-]*', line)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to