Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Issue 11441008: [web_dev_style] Changing :pseudo-element to ::pseudo-element to match (Closed)

Created:
8 years ago by Dan Beam
Modified:
8 years ago
CC:
chromium-reviews, dbeam+watch-ntp_chromium.org, dbeam+watch-options_chromium.org, nkostylev+watch_chromium.org, yoshiki+watch_chromium.org, rginda+watch_chromium.org, arv (Not doing code reviews), oshima+watch_chromium.org, estade+watch_chromium.org, stevenjb+watch_chromium.org, pedrosimonetti+watch_chromium.org
Visibility:
Public.

Description

[web_dev_style] Changing :pseudo-element to ::pseudo-element to match future-facing CSS3 style. This also helps indicate which :pseudo types are *elements* (actually has a DOM node) vs. *classes* (just used for applying a selector). BUG=None TEST=chrome/browser/resources/test_presubmit.py R=tbreisacher@chromium.org,estade@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=171669

Patch Set 1 #

Total comments: 2

Patch Set 2 : nits #

Total comments: 4

Patch Set 3 : rebase #

Patch Set 4 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+163 lines, -69 lines) Patch
M chrome/browser/resources/about_credits.html View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/resources/about_credits.tmpl View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/resources/bookmark_manager/css/bmm.css View 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/browser/resources/chromeos/about_os_credits.html View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/resources/chromeos/login/bubble.css View 1 2 3 chunks +22 lines, -22 lines 0 comments Download
M chrome/browser/resources/chromeos/login/oobe.css View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/resources/file_manager/css/common.css View 1 3 chunks +3 lines, -4 lines 0 comments Download
M chrome/browser/resources/file_manager/css/file_manager.css View 7 chunks +15 lines, -15 lines 0 comments Download
M chrome/browser/resources/ntp4/footer_menu.css View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/resources/options/manage_profile_overlay.css View 1 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/browser/resources/options/search_page.css View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/resources/performance_monitor/chart.css View 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/resources/shared/css/about_version.css View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/resources/shared/css/menu.css View 1 2 chunks +5 lines, -5 lines 0 comments Download
M chrome/browser/resources/shared/css/table.css View 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/resources/shared/css/tree.css View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/resources/task_manager/task_manager.css View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/resources/test_presubmit.py View 1 chunk +19 lines, -0 lines 0 comments Download
M chrome/browser/resources/web_dev_style/css_checker.py View 1 7 chunks +79 lines, -3 lines 0 comments Download

Messages

Total messages: 8 (0 generated)
Dan Beam
https://codereview.chromium.org/11441008/diff/1/chrome/browser/resources/chromeos/login/bubble.css File chrome/browser/resources/chromeos/login/bubble.css (right): https://codereview.chromium.org/11441008/diff/1/chrome/browser/resources/chromeos/login/bubble.css#newcode32 chrome/browser/resources/chromeos/login/bubble.css:32: html[dir=ltf] .bubble-top::before { ^ I'll contact the author about ...
8 years ago (2012-12-05 07:21:41 UTC) #1
Dan Beam
https://codereview.chromium.org/11441008/diff/1/chrome/browser/resources/chromeos/login/bubble.css File chrome/browser/resources/chromeos/login/bubble.css (right): https://codereview.chromium.org/11441008/diff/1/chrome/browser/resources/chromeos/login/bubble.css#newcode32 chrome/browser/resources/chromeos/login/bubble.css:32: html[dir=ltf] .bubble-top::before { On 2012/12/05 07:21:41, Dan Beam wrote: ...
8 years ago (2012-12-05 07:24:17 UTC) #2
Tyler Breisacher (Chromium)
https://codereview.chromium.org/11441008/diff/2001/chrome/browser/resources/web_dev_style/css_checker.py File chrome/browser/resources/web_dev_style/css_checker.py (right): https://codereview.chromium.org/11441008/diff/2001/chrome/browser/resources/web_dev_style/css_checker.py#newcode103 chrome/browser/resources/web_dev_style/css_checker.py:103: pseudo_elements = ['after', Presumably more things will be added ...
8 years ago (2012-12-05 18:59:57 UTC) #3
Dan Beam
I'll add re.VERBOSE stuff soon https://codereview.chromium.org/11441008/diff/2001/chrome/browser/resources/web_dev_style/css_checker.py File chrome/browser/resources/web_dev_style/css_checker.py (right): https://codereview.chromium.org/11441008/diff/2001/chrome/browser/resources/web_dev_style/css_checker.py#newcode103 chrome/browser/resources/web_dev_style/css_checker.py:103: pseudo_elements = ['after', On ...
8 years ago (2012-12-05 20:36:29 UTC) #4
Tyler Breisacher (Chromium)
lgtm https://codereview.chromium.org/11441008/diff/2001/chrome/browser/resources/web_dev_style/css_checker.py File chrome/browser/resources/web_dev_style/css_checker.py (right): https://codereview.chromium.org/11441008/diff/2001/chrome/browser/resources/web_dev_style/css_checker.py#newcode164 chrome/browser/resources/web_dev_style/css_checker.py:164: for p in re.finditer(re.compile(pseudo_reg, re.MULTILINE), contents): optional nit: ...
8 years ago (2012-12-05 20:45:14 UTC) #5
Dan Beam
filed regex cleanup as http://code.google.com/p/chromium/issues/detail?id=164702
8 years ago (2012-12-06 22:13:27 UTC) #6
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dbeam@chromium.org/11441008/12001
8 years ago (2012-12-06 22:17:25 UTC) #7
commit-bot: I haz the power
8 years ago (2012-12-07 01:19:20 UTC) #8
Message was sent while issue was closed.
Change committed as 171669

Powered by Google App Engine
This is Rietveld 408576698