Title: [160650] trunk/Tools
- Revision
- 160650
- Author
- [email protected]
- Date
- 2013-12-16 11:08:56 -0800 (Mon, 16 Dec 2013)
Log Message
Unreviewed, rolling out r160645.
http://trac.webkit.org/changeset/160645
https://bugs.webkit.org/show_bug.cgi?id=125787
Change breaks test-webkitpy (Requested by bfulgham on
#webkit).
* Scripts/prepare-ChangeLog:
(get_selector_line_ranges_for_css):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (160649 => 160650)
--- trunk/Tools/ChangeLog 2013-12-16 18:17:01 UTC (rev 160649)
+++ trunk/Tools/ChangeLog 2013-12-16 19:08:56 UTC (rev 160650)
@@ -1,3 +1,15 @@
+2013-12-16 Commit Queue <[email protected]>
+
+ Unreviewed, rolling out r160645.
+ http://trac.webkit.org/changeset/160645
+ https://bugs.webkit.org/show_bug.cgi?id=125787
+
+ Change breaks test-webkitpy (Requested by bfulgham on
+ #webkit).
+
+ * Scripts/prepare-ChangeLog:
+ (get_selector_line_ranges_for_css):
+
2013-12-16 David Farler <[email protected]>
[ASAN] WebKitLauncher: Include libasancrashreporter.dylib in DYLD_INSERT_LIBRARIES if it exists
Modified: trunk/Tools/Scripts/prepare-ChangeLog (160649 => 160650)
--- trunk/Tools/Scripts/prepare-ChangeLog 2013-12-16 18:17:01 UTC (rev 160649)
+++ trunk/Tools/Scripts/prepare-ChangeLog 2013-12-16 19:08:56 UTC (rev 160650)
@@ -1487,13 +1487,13 @@
foreach my $token (split m-(\{|\}|/\*|\*/)-, $_) {
if ($token eq "{") {
if (!$inComment) {
- warn "mismatched brace found in $fileName\n" if $inBrace > 2;
- $inBrace ++;
+ warn "mismatched brace found in $fileName\n" if $inBrace;
+ $inBrace = 1;
}
} elsif ($token eq "}") {
if (!$inComment) {
warn "mismatched brace found in $fileName\n" if !$inBrace;
- $inBrace --;
+ $inBrace = 0;
push(@ranges, [$start, $., $currentSelector]);
$currentSelector = "";
$start = 0;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes