- 02 Jul, 2009 40 commits
-
-
nirnimesh@chromium.org authored
Times out too often under Valgrind on Mac Tracking bug: crbug.com/15817 Review URL: http://codereview.chromium.org/150218 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19846 0039d316-1c4b-4281-b951-d872f2087c98
-
jorlow@chromium.org authored
BUG=15854 TEST=none Review URL: http://codereview.chromium.org/149141 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19845 0039d316-1c4b-4281-b951-d872f2087c98
-
mpcomplete@chromium.org authored
- Disconnect ports properly (javascript mistake). - Use the right port ID when dispatching the disconnect event. - Fix a bug with 2 extensions loaded in the same process. BUG=12686 BUG=15798 TEST=Load an extension that uses messaging, and make sure it disconnects when you navigate or close the connecting. Review URL: http://codereview.chromium.org/152003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19844 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
I removed the extra argument from WidgetGTK::Init but didn't update these sites. Review URL: http://codereview.chromium.org/155006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19843 0039d316-1c4b-4281-b951-d872f2087c98
-
gman@google.com authored
Review URL: http://codereview.chromium.org/149139 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19842 0039d316-1c4b-4281-b951-d872f2087c98
-
finnur@chromium.org authored
actions. One for the helper function that parses a page action from the manifest and another that tests the page action api. BUG=None TEST=None Review URL: http://codereview.chromium.org/151181 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19840 0039d316-1c4b-4281-b951-d872f2087c98
-
estade@chromium.org authored
GTK: when doing a drag from a web page, pass a recent mouse down to gtk_drag_begin() so it has a better idea what time to pass to gdk_grab_pointer(). I believe the following was happening: - render view gets mouse down, forwards to webkit - render view gets motion, forwards to webkit - user releases mouse button, that event is added to the queue - browser gets message from webkit that a drag has begun, calls gtk_drag_begin() with no event - gtk_drag_begin initiates a cursor grab, but it only applies to events that have not yet been added to the queue - mouse release comes up in queue; passed to render view rather than the drag widget TEST=You can't get stuck in really short render view drags. Whereas it was really easy to repro before (especially in Xephyr), I can repro no longer. BUG=http://crbug.com/15768 Review URL: http://codereview.chromium.org/150204 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19839 0039d316-1c4b-4281-b951-d872f2087c98
-
estade@chromium.org authored
BUG=http://crbug.com/15853 TEST=none Review URL: http://codereview.chromium.org/155004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19838 0039d316-1c4b-4281-b951-d872f2087c98
-
jrg@chromium.org authored
BUG=http://crbug.com/15727 TEST=Load a web page that has a popup. Example: <!DOCTYPE html> Click button to open a new window. <br> <button onclick="w = window.open('http://www.google.com', 'New Window', 'width=512,height=512'); w.moveTo(300,300);">Open with w,h</button> Now click on the button to get a pop-up. In the new window, make sure there is no "tab" area above the URL bar, and no "new tab" button. Hit Cmd-T to create a new tab, and make sure it gets created in the OTHER window. More work is needed to minimize pop-up chrome more, but this'll prevent the most brutal failures (e.g. team meeting "demo" today). Review URL: http://codereview.chromium.org/151135 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19837 0039d316-1c4b-4281-b951-d872f2087c98
-
jorlow@chromium.org authored
Review URL: http://codereview.chromium.org/149137 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19836 0039d316-1c4b-4281-b951-d872f2087c98
-
evan@chromium.org authored
Moved some QuickTime-dependent tests into a bug. Review URL: http://codereview.chromium.org/150195 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19835 0039d316-1c4b-4281-b951-d872f2087c98
-
jorlow@chromium.org authored
BUG=15854 TEST=none Review URL: http://codereview.chromium.org/149134 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19834 0039d316-1c4b-4281-b951-d872f2087c98
-
cmp@google.com authored
BUG=12357 TEST=page cycler runs to completion Review URL: http://codereview.chromium.org/155003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19833 0039d316-1c4b-4281-b951-d872f2087c98
-
eroman@chromium.org authored
BUG=None TEST=None TBR=brettw Review URL: http://codereview.chromium.org/149128 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19832 0039d316-1c4b-4281-b951-d872f2087c98
-
nirnimesh@chromium.org authored
TEST=check Mac valgrind bot BUG=15819 Review URL: http://codereview.chromium.org/149129 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19831 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
* Columns are resizable. * Resource icon displayed by resource name. BUG=11392 TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19830 0039d316-1c4b-4281-b951-d872f2087c98
-
mirandac@chromium.org authored
Change status bubble so that it expands to accommodate URL's that are abridged in the standard width. BUG= http://crbug.com/1455 TEST= Mouse over a link which is abridged in the status bubble. Hover for 2 seconds. Link should expand to show as much as possible without extending out of the view in which it is contained. Review URL: http://codereview.chromium.org/146043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19829 0039d316-1c4b-4281-b951-d872f2087c98
-
mpcomplete@chromium.org authored
This allows us to receive notifications like when the V8 context is destroyed. BUG=12686 TEST=no Review URL: http://codereview.chromium.org/150186 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19828 0039d316-1c4b-4281-b951-d872f2087c98
-
estade@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/150203 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19827 0039d316-1c4b-4281-b951-d872f2087c98
-
agl@chromium.org authored
Now that we have complex text working on Linux, I'm working on reviewing and rebaselining the tests that we now pass. BUG=9768,10296 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19826 0039d316-1c4b-4281-b951-d872f2087c98
-
agl@chromium.org authored
Now that we have complex text working on Linux, I'm working on reviewing and rebaselining the tests that we now pass. BUG=10296,10344,10293,11613,10346,10459,12053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19825 0039d316-1c4b-4281-b951-d872f2087c98
-
jorlow@chromium.org authored
BUG=15837 TEST=new layout tests that are excluded git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19824 0039d316-1c4b-4281-b951-d872f2087c98
-
pfeldman@chromium.org authored
TBR=yurys git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19823 0039d316-1c4b-4281-b951-d872f2087c98
-
stuartmorgan@chromium.org authored
Modify LoginDatabase slightly to give PasswordStoreMac enough information to do the right thing. Add creator code for keychain items we create, and unit tests to make sure. BUG=11745 TEST=Visit a site for which you have a password in the Keychain. Type your username, unfocus the field, and then log in with the filled password. Log out, return to the login page, and the username and password should now autofill without user interaction. Review URL: http://codereview.chromium.org/151176 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19822 0039d316-1c4b-4281-b951-d872f2087c98
-
nirnimesh@chromium.org authored
Review URL: http://codereview.chromium.org/150217 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19821 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
Review URL: http://codereview.chromium.org/150171 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19820 0039d316-1c4b-4281-b951-d872f2087c98
-
willchan@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/150205 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19819 0039d316-1c4b-4281-b951-d872f2087c98
-
darin@chromium.org authored
DidCreateDataSource gets called when constructing the initial data source for the WebView's main frame. This ensures that the NavigationState associated with a WebDataSource can never be null. I went ahead and removed some of the null-checks that were added to avoid other related crashes. (To fix bug 15594, I really really didn't want to add another one of those null checks.) BUG=15594 TEST=partially covered by existing ui tests R=dglazkov Review URL: http://codereview.chromium.org/150208 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19818 0039d316-1c4b-4281-b951-d872f2087c98
-
rafaelw@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19817 0039d316-1c4b-4281-b951-d872f2087c98
-
dglazkov@google.com authored
R=darin BUG=3319 TEST=no layout test regressions Review URL: http://codereview.chromium.org/147210 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19816 0039d316-1c4b-4281-b951-d872f2087c98
-
yurys@google.com authored
Review URL: http://codereview.chromium.org/151210 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19814 0039d316-1c4b-4281-b951-d872f2087c98
-
pfeldman@chromium.org authored
Review URL: http://codereview.chromium.org/150220 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19813 0039d316-1c4b-4281-b951-d872f2087c98
-
rafaelw@chromium.org authored
R=aa Review URL: http://codereview.chromium.org/151189 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19811 0039d316-1c4b-4281-b951-d872f2087c98
-
jeremy@chromium.org authored
the underlying issue is fixed in the latest seed so we don't need the workaround anymore: * r16073 "Fixup colors for inactive tab." * r15328 "Fixes for 10.6" (only the changes to tab_cell.mm) Review URL: http://codereview.chromium.org/151197 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19810 0039d316-1c4b-4281-b951-d872f2087c98
-
jeremy@chromium.org authored
We recently enabled reading sysctl values from inside the sandbox. This CL removes workarounds needed when sysctl reads where blocked. Review URL: http://codereview.chromium.org/151202 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19809 0039d316-1c4b-4281-b951-d872f2087c98
-
ager@chromium.org authored
non-functions on the global object. Review URL: http://codereview.chromium.org/150223 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19808 0039d316-1c4b-4281-b951-d872f2087c98
-
pfeldman@chromium.org authored
Review URL: http://codereview.chromium.org/151150 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19807 0039d316-1c4b-4281-b951-d872f2087c98
-
pfeldman@chromium.org authored
Review URL: http://codereview.chromium.org/150219 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19806 0039d316-1c4b-4281-b951-d872f2087c98
-
ager@chromium.org authored
This version contains a bug fix and various performance improvements. I particular it contains a reworking of the representation of the global object to improve performance. Rebaselining one layout test because of changes to the line numbers at which an error is reported. BUG=12548 TEST=none Review URL: http://codereview.chromium.org/151196 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19805 0039d316-1c4b-4281-b951-d872f2087c98
-
yuzo@chromium.org authored
BUG=none TEST=n/a Review URL: http://codereview.chromium.org/151194 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19804 0039d316-1c4b-4281-b951-d872f2087c98
-