- 08 Dec, 2011 40 commits
-
-
sail@chromium.org authored
BUG=105023 TEST= Review URL: http://codereview.chromium.org/8887003 TBR=sail@chromium.org Review URL: http://codereview.chromium.org/8872029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113637 0039d316-1c4b-4281-b951-d872f2087c98
-
sail@chromium.org authored
BUG=105014 TEST= Review URL: http://codereview.chromium.org/8863009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113636 0039d316-1c4b-4281-b951-d872f2087c98
-
asvitkine@chromium.org authored
Don't use SCRIPT_UNDEFINED in the case of font fallback, unless font fallback actually fails to return a script that can display the characters. This fixes the problem of some scripts not being properly displayed. This actually makes RenderTextWin properly validate whether a text position accepts a cursor, which caused several tests to fail and revealed some additional issues in RenderTextWin. The CL includes some modifications to address this. Some tests are disabled under XP, see: http://crbug.com/106450 Also, fixes some lint warnings. BUG=90426 TEST=Run chrome.exe --use-pure-views and paste some Bengali text into the omnibox. It should show up properly. Review URL: http://codereview.chromium.org/8575020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113635 0039d316-1c4b-4281-b951-d872f2087c98
-
sail@chromium.org authored
BUG=105023 TEST= Review URL: http://codereview.chromium.org/8887003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113634 0039d316-1c4b-4281-b951-d872f2087c98
-
mball@google.com authored
TBR=bradnelson, noelallen Review URL: http://codereview.chromium.org/8885015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113633 0039d316-1c4b-4281-b951-d872f2087c98
-
piman@chromium.org authored
BUG=106787 TEST=interactive_ui_tests Review URL: http://codereview.chromium.org/8887002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113632 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113631 0039d316-1c4b-4281-b951-d872f2087c98
-
tony@chromium.org authored
BUG=None TBR=bashi@chromium.org Review URL: http://codereview.chromium.org/8879020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113630 0039d316-1c4b-4281-b951-d872f2087c98
-
cbentzel@chromium.org authored
BUG=101335,104998 TBR=jochen@chromium.org Review URL: http://codereview.chromium.org/8888016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113627 0039d316-1c4b-4281-b951-d872f2087c98
-
markus@chromium.org authored
BUG=none TEST=Install dependencies in an "oneiric" chroot environment Review URL: http://codereview.chromium.org/8883009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113626 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
run the normal startup flow, so we have to special case them. BUG=104360 TEST=none R=ben@chromium.org Review URL: http://codereview.chromium.org/8883001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113625 0039d316-1c4b-4281-b951-d872f2087c98
-
saintlou@chromium.org authored
TBR=nona@chromium.org BUG=106862 TEST=CandidateWindowViewTest.MozcUpdateCandidateTest Review URL: http://codereview.chromium.org/8879023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113624 0039d316-1c4b-4281-b951-d872f2087c98
-
flackr@chromium.org authored
The screen locker window manager refuses to map most windows over the screen locker layer. This is for good reason to be safe about not allowing content to show up on top. To be able to see the status area window over the lock screen we can override the window type to be TYPE_POPUP. This must only be done for the lock screen as it does not allow focus to this window which is used on the login screen but not allowed on the lock screen due to the GTK grab. BUG=105572 TEST=Lock screen and check if status area is visible. Review URL: http://codereview.chromium.org/8770012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113622 0039d316-1c4b-4281-b951-d872f2087c98
-
http://trac.webkit.org/changeset/102044epoger@chromium.org authored
BUG=106842 Review URL: http://codereview.chromium.org/8888014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113621 0039d316-1c4b-4281-b951-d872f2087c98
-
toyoshim@chromium.org authored
pp_macros.idl. Now, PP_ALLOW_THIS_IN_INITIALIZER_LIST macro is provided for not only tests but also C++ api implementation in NaCl. BUG=87310 TEST=ui_tests Review URL: http://codereview.chromium.org/8885012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113615 0039d316-1c4b-4281-b951-d872f2087c98
-
saintlou@chromium.org authored
This initialization must have been implicit with gtk. On ChromeOS we go down a different code path for these tests. TBR=phajdan.jr@chromium.org BUG=106725 TEST=RTLTest.WrapPathWithLTRFormatting on Aura/Linux. Review URL: http://codereview.chromium.org/8889002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113614 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
Don't use SCRIPT_UNDEFINED in the case of font fallback, unless font fallback actually fails to return a script that can display the characters. This fixes the problem of some scripts not being properly displayed. This actually makes RenderTextWin properly validate whether a text position accepts a cursor, which caused several tests to fail and revealed some additional issues in RenderTextWin. The CL includes some modifications to address this. Some tests are disabled under XP, see: http://crbug.com/106450 Also, fixes some lint warnings. BUG=90426 TEST=Run chrome.exe --use-pure-views and paste some Bengali text into the omnibox. It should show up properly. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=113075 Review URL: http://codereview.chromium.org/8575020 TBR=asvitkine@chromium.org Review URL: http://codereview.chromium.org/8872024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113613 0039d316-1c4b-4281-b951-d872f2087c98
-
markusheintz@chromium.org authored
- Add missing includes - Inline function. BUG=63656 TEST=HostContentSettingsMapTest*, ContentSettingsProviderTest* Review URL: http://codereview.chromium.org/8804016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113610 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113609 0039d316-1c4b-4281-b951-d872f2087c98
-
reed@google.com authored
Review URL: http://codereview.chromium.org/8856002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113608 0039d316-1c4b-4281-b951-d872f2087c98
-
agl@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113607 0039d316-1c4b-4281-b951-d872f2087c98
-
asvitkine@chromium.org authored
Don't use SCRIPT_UNDEFINED in the case of font fallback, unless font fallback actually fails to return a script that can display the characters. This fixes the problem of some scripts not being properly displayed. This actually makes RenderTextWin properly validate whether a text position accepts a cursor, which caused several tests to fail and revealed some additional issues in RenderTextWin. The CL includes some modifications to address this. Some tests are disabled under XP, see: http://crbug.com/106450 Also, fixes some lint warnings. BUG=90426 TEST=Run chrome.exe --use-pure-views and paste some Bengali text into the omnibox. It should show up properly. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=113075 Review URL: http://codereview.chromium.org/8575020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113606 0039d316-1c4b-4281-b951-d872f2087c98
-
cbentzel@chromium.org authored
BUG=106850 TBR=nona@chromium.org Review URL: http://codereview.chromium.org/8889015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113605 0039d316-1c4b-4281-b951-d872f2087c98
-
jochen@chromium.org authored
BUG=79331 TEST=collected cookies test Review URL: http://codereview.chromium.org/8836006 TBR=jochen@chromium.org Review URL: http://codereview.chromium.org/8872017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113604 0039d316-1c4b-4281-b951-d872f2087c98
-
apavlov@chromium.org authored
This change has resulted in severe regressions in keyboard event dispatching - the keydown and keypress events are no longer dispatched synchronously. Reverting as suggested by Darin Fisher. BUG=106224 TEST=manual TBR=darin Review URL: http://codereview.chromium.org/8885009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113603 0039d316-1c4b-4281-b951-d872f2087c98
-
nona@chromium.org authored
BUG=chromium-os:23640 TEST=run unit_tests Review URL: http://codereview.chromium.org/8833008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113601 0039d316-1c4b-4281-b951-d872f2087c98
-
timurrrr@chromium.org authored
It was failing with a "_cur_testcase not defined" error. TBR=eugenis Review URL: http://codereview.chromium.org/8872016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113598 0039d316-1c4b-4281-b951-d872f2087c98
-
ivankr@chromium.org authored
BUG=chromium-os:22840 TEST=None Review URL: http://codereview.chromium.org/8883013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113597 0039d316-1c4b-4281-b951-d872f2087c98
-
dgozman@chromium.org authored
Revert 113591 - Revert 113579 - Content settings: allow scripts on interstitial pages even if JavaScript is blocked. BUG=104700 TEST=ChromeRenderViewTest.ContentSettingsInterstitialPages Review URL: http://codereview.chromium.org/8773035 TBR=marja@chromium.org Review URL: http://codereview.chromium.org/8889008 TBR=dgozman@chromium.org Review URL: http://codereview.chromium.org/8873015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113594 0039d316-1c4b-4281-b951-d872f2087c98
-
bauerb@chromium.org authored
BUG=106709 TEST=none Review URL: http://codereview.chromium.org/8848001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113593 0039d316-1c4b-4281-b951-d872f2087c98
-
ivankr@chromium.org authored
Additionally, downloaded profile image is no more saved to file every time it is downloaded after login. BUG=chromium-os:23684 TEST=Manual: see bug description Review URL: http://codereview.chromium.org/8822015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113592 0039d316-1c4b-4281-b951-d872f2087c98
-
dgozman@chromium.org authored
Revert 113579 - Content settings: allow scripts on interstitial pages even if JavaScript is blocked. BUG=104700 TEST=ChromeRenderViewTest.ContentSettingsInterstitialPages Review URL: http://codereview.chromium.org/8773035 TBR=marja@chromium.org Review URL: http://codereview.chromium.org/8889008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113591 0039d316-1c4b-4281-b951-d872f2087c98
-
marja@chromium.org authored
BUG=104291 TEST={ChromeAppCacheServiceTest, DOMStorageTest, IndexedDBBrowserTest, DatabaseTrackerTest}.SaveSessionState Review URL: http://codereview.chromium.org/8820009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113590 0039d316-1c4b-4281-b951-d872f2087c98
-
timurrrr@chromium.org authored
Also, improve the comment and add a link to the bug BUG=106829 TBR=cbentzel Review URL: http://codereview.chromium.org/8889006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113587 0039d316-1c4b-4281-b951-d872f2087c98
-
yusukes@chromium.org authored
The new name would be more consistent since other functions that return a Unicode code point use ui::GetCharacterXXX. For example, keyboard_code_conversion.h has ui::GetCharacterFromKeyCode. BUG=None TEST=ran try Review URL: http://codereview.chromium.org/8802002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113586 0039d316-1c4b-4281-b951-d872f2087c98
-
dubroy@chromium.org authored
BUG=None. TEST=Manual. Review URL: http://codereview.chromium.org/8851001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113585 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113582 0039d316-1c4b-4281-b951-d872f2087c98
-
marja@chromium.org authored
BUG=104700 TEST=ChromeRenderViewTest.ContentSettingsInterstitialPages Review URL: http://codereview.chromium.org/8773035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113579 0039d316-1c4b-4281-b951-d872f2087c98
-
serya@chromium.org authored
BUG=None TEST=None Review URL: http://codereview.chromium.org/8659002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113578 0039d316-1c4b-4281-b951-d872f2087c98
-
ncj674@motorola.com authored
BUG=101399 TEST= Navigate inside the avatar menu using keyboard. Tab key and down arrow key to navigate forward. Shift-Tab key and up arrow key to navigate backward. Enter key to open/edit a profile. Review URL: http://codereview.chromium.org/8834010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113577 0039d316-1c4b-4281-b951-d872f2087c98
-