RESOLVED FIXED Bug 83685
Calendar Picker: remove unnecessary code from calendarPicker.{css,js}
https://bugs.webkit.org/show_bug.cgi?id=83685
Summary Calendar Picker: remove unnecessary code from calendarPicker.{css,js}
Kent Tamura
Reported 2012-04-11 03:14:17 PDT
Calendar Picker: remove unnecessary code from calendarPicker.{css,js}
Attachments
Patch (3.21 KB, patch)
2012-04-11 03:19 PDT, Kent Tamura
haraken: review+
Kent Tamura
Comment 1 2012-04-11 03:19:58 PDT
Kentaro Hara
Comment 2 2012-04-11 04:09:29 PDT
Comment on attachment 136651 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=136651&action=review > Source/WebCore/ChangeLog:12 > + - leading adn trailing whitespace (.js and .css) Nit: *and* > Source/WebCore/make-file-arrays.py:59 > + leading_space = re.compile(r"^ ", re.MULTILINE) This regular expression is assuming that repeating_space.sub() runs before leading_space.sub(). To remove the assumption, r"^[ \t]+" might be better. > Source/WebCore/make-file-arrays.py:60 > + trailing_space = re.compile(r" $", re.MULTILINE) Ditto. r"[ \t]+$" might be better. > Source/WebCore/make-file-arrays.py:75 > + print content Remove this
Kent Tamura
Comment 3 2012-04-12 23:33:30 PDT
Kent Tamura
Comment 4 2012-04-12 23:34:36 PDT
(In reply to comment #2) > > Source/WebCore/ChangeLog:12 > > + - leading adn trailing whitespace (.js and .css) > > Nit: *and* Fixed. > > Source/WebCore/make-file-arrays.py:59 > > + leading_space = re.compile(r"^ ", re.MULTILINE) > > This regular expression is assuming that repeating_space.sub() runs before leading_space.sub(). To remove the assumption, r"^[ \t]+" might be better. Fixed. > > Source/WebCore/make-file-arrays.py:60 > > + trailing_space = re.compile(r" $", re.MULTILINE) > > Ditto. r"[ \t]+$" might be better. Fixed. > > Source/WebCore/make-file-arrays.py:75 > > + print content > > Remove this Removed.
Note You need to log in before you can comment on or make changes to this bug.