Jim Mathies
7d59d4601d
Bug 648935 - Prevent focus event overhead when the dom sets the focus to a windowed plugin. r=bsmedberg.
2011-05-18 06:57:08 -05:00
Jim Mathies
909389680e
Bug 648935 - Remove dead code from plugin instances. r=bsmedberg.
2011-05-18 06:57:07 -05:00
Mounir Lamouri
513d0ca1d6
Merging cedar with mozilla-central.
2011-05-18 11:42:37 +02:00
Robert O'Callahan
a3d1ab8a34
Bug 657780. Silence pldhash warnings by shrinking ThebesLayerItemsEntry. r=tnikkel
2011-05-18 17:48:43 +12:00
Tim Taubert
1da498063b
Bug 618188 - browser-chrome: browser_600545.js (and _601955.js) intermittently times out; r=zpao
2011-05-17 00:41:28 +02:00
Ed Morley
399bb3195e
Bug 656187 - Remove modules/lib7z/ since it was only used for the WinCE installer; r=bsmedberg
2011-05-17 16:06:18 +02:00
Ed Morley
b71c70b99e
Bug 655498 - Remove WinCE code from profile/* ; r=bsmedberg
2011-05-17 16:06:10 +02:00
Ed Morley
91238e76b1
Bug 316661 - Part A - Remove null-checks before delete. r=bsmedberg
2011-05-17 16:01:36 +02:00
Rafael Ávila de Epíndola
9a5251cb2b
Bug 655865 - Fix --enable-accessibility build with clang. r=smichaud,joshmoz
2011-05-17 16:00:30 +02:00
Hiroyuki Ikezoe
1ccdeadb64
Bug 657487 - Include static keyword in definitions of signal callback functions. r=karlt
2011-05-17 15:55:16 +02:00
Ehren Metcalfe
909c404713
Bug 551390 - Remove dead code in content r=sicking,roc
2011-05-17 15:54:09 +02:00
Mounir Lamouri
0782c0f9f3
Merging cedar with mozilla-central.
2011-05-17 15:32:32 +02:00
Mounir Lamouri
c6c524590d
Backout test fix that was needed for bug 656749.
2011-05-17 13:43:40 +02:00
Mounir Lamouri
e093217c6b
Backout bug 656749.
2011-05-17 13:43:10 +02:00
Mounir Lamouri
1d59b6f8fa
Merge backout
2011-05-17 11:44:32 +02:00
Mounir Lamouri
127ecf5ea3
Backout bug 629866 and bug 647560.
2011-05-17 11:44:17 +02:00
Robert O'Callahan
78538a4bce
Backout 647560 --- changesets 32a13c864e55 c2dbc3747034 3d845440cbc7 13c5fa1bdfb0 8cf18f0d9e7e 863cd05ae581
2011-05-17 19:05:23 +12:00
Robert O'Callahan
26bbeb07e5
Bug 656749. Fix Mac test failure
2011-05-17 19:03:02 +12:00
Rafael Ávila de Espíndola
2f6db18989
Bug 657528 - Use a volatile pointer to force a trap; r=ehsan
...
Clang issues the warning:
mozalloc_abort.cpp:64:22: warning: indirection of non-volatile null pointer will be deleted, not trap [-Wnull-dereference]
And sure enough, TouchBadMemory is currently broken with clang. That breaks mozalloc_abort
which breaks NS_DebugBreak which breaks the crashreport test.
2011-05-16 21:07:06 -04:00
Robert O'Callahan
bfdfab0931
Bug 647560. Remove unused MayHaveOverlappingOrTransparentLayers. r=tnikkel
2011-05-17 11:42:19 +12:00
Robert O'Callahan
5649b24aa6
Bug 647560. Cache temporary backbuffer surfaces. r=karlt
2011-05-17 11:42:11 +12:00
Robert O'Callahan
b021c0ce1b
Bug 647560. Create ApplyDoubleBuffering to recursively walk layer tree and implement double-buffering by setting mUseIntermediateSurface on ContainerLayers where necessary. r=tnikkel
...
The idea here is to do double-buffering just by setting mUseIntermediateSurface on ContainerLayers when needed. When
we need to double-buffer compositing of a layer tree, ApplyDoubleBuffering examines the root container layer. If the
child layers don't overlap and together cover the window, we don't need to double-buffer in that container, instead
we can double-buffer each child layer separately --- so we recursively call ApplyDoubleBuffering on the child layers.
When a container has children that overlap or that don't cover the container's visible rect (the latter case
probably can't happen in practice), we force it to have an intermediate surface.
This change fixes this bug because in normal browser windows the Web content layer double-buffers
2011-05-17 11:42:05 +12:00
Robert O'Callahan
4005a3a447
Bug 647560. Add support for compositing BasicLayers with OPERATOR_SOURCE. r=tnikkel
...
We'll need this for the improved backbuffer code in the next patch. When a layer tree's
leaf layers don't overlap and cover the window, the next patch will avoid double-buffering
by blitting those layers directly to the window. If the window has transparent parts
(e.g. with Aero Glass), we need to draw the layers for those transparent parts using
OPERATOR_SOURCE so that the alpha values in the window are reset.
2011-05-17 11:41:57 +12:00
Robert O'Callahan
6f33d6ea53
Bug 647560. Clean up MarkLeafLayersHidden and make it set the hidden state on container layers. r=tnikkel
...
Instead of doing tricks with the cliprect to prevent layer content from adding to aOpaqueRegion, pass an explicit flag to control that.
Mark a ContainerLayer hidden if all its children are hidden. This will need to be changed if/when we add layer properties
that result in a ContainerLayer drawing content even if it has no children.
2011-05-17 11:41:48 +12:00
Robert O'Callahan
e8c9f1c8a5
Bug 629866. Part 2: Make MarkLeafLayersHidden actually hide layers that aren't in the dirty region. Don't consider hidden layers when deciding whether double-buffering is needed. r=cjones
2011-05-17 11:41:39 +12:00
Ian Moody
9d0eeccd2c
Bug 657143 - Reorder mature CSS properties in nsComputedDOMStyle.cpp
2011-05-17 11:20:08 +12:00
Paul ADENOT
294c649343
Bug 657447 : adding include guard aroung nsTimeRanges class.
2011-05-17 11:14:40 +12:00
Robert O'Callahan
ee46b56186
Bug 648483. Record the transform used when we last painted a layer and use that to control what needs to be invalidated in the layer. r=tnikkel
2011-05-17 11:05:56 +12:00
Robert O'Callahan
7824486811
Bug 656749. Only optimize away zero-opacity elements when we're painting, not for any other kind of display list construction such as plugin geometry. r=tnikkel
2011-05-17 11:05:46 +12:00
Robert O'Callahan
ff4a04b32c
Bug 640899. Have test_leaf_layers_partition_browser_window.xul test maximized windows as well as normal windows; on Windows XP, don't test normal windows because we know the resizer overlaps there. r=tnikkel
2011-05-17 11:04:53 +12:00
Benoit Jacob
1960414b5f
Bug 656752 - WebGL crash [@gleRunVertexSubmitImmediate()] - r=jrmuizel, a=clegnitto
...
Fix bookkeeping in webgl.bindBuffer()
2011-05-16 17:18:04 -04:00
Justin Lebar
fc4cd2c7f1
Bug 656991 - Followup. Use JS_free instead of free. r=bz
...
--HG--
extra : rebase_source : 00e5cc27f067a191e7a834852faee8c788feb061
2011-05-16 16:36:12 -04:00
Taras Glek
78edb678a3
Bug 657411 - Telemetry doesn't register for idle-daily r=mak
2011-05-16 13:07:45 -07:00
Mounir Lamouri
1f8a3e8ae5
Bug 655960 - Use a native rendering for vertical progress bar in Cocoa. r=mstange
2011-05-16 12:58:55 +02:00
Mounir Lamouri
a674d14bbe
Bug 655313 - Use a native rendering for indeterminate vertical progress bar in GTK. r=roc,karlt
2011-05-16 12:59:10 +02:00
Mounir Lamouri
c5a1b0eda2
Bug 638540 - Progress element should be shown vertically when -moz-orient value is 'vertical'. r=roc
...
--HG--
rename : layout/reftests/forms/progress/bar-pseudo-element-ref.html => layout/reftests/forms/progress/bar-pseudo-element-vertical-ref.html
rename : layout/reftests/forms/progress/bar-pseudo-element.html => layout/reftests/forms/progress/bar-pseudo-element-vertical-rtl.html
rename : layout/reftests/forms/progress/bar-pseudo-element.html => layout/reftests/forms/progress/bar-pseudo-element-vertical.html
rename : layout/reftests/forms/progress/indeterminate-style-width-ref.html => layout/reftests/forms/progress/indeterminate-style-height-ref.html
rename : layout/reftests/forms/progress/indeterminate-style-width.html => layout/reftests/forms/progress/indeterminate-style-height.html
rename : layout/reftests/forms/progress/margin-padding-ref.html => layout/reftests/forms/progress/margin-padding-vertical-ref.html
rename : layout/reftests/forms/progress/margin-padding-rtl-ref.html => layout/reftests/forms/progress/margin-padding-vertical-rtl-ref.html
rename : layout/reftests/forms/progress/margin-padding-rtl.html => layout/reftests/forms/progress/margin-padding-vertical-rtl.html
rename : layout/reftests/forms/progress/margin-padding.html => layout/reftests/forms/progress/margin-padding-vertical.html
rename : layout/reftests/forms/progress/values-ref.html => layout/reftests/forms/progress/values-vertical-ref.html
rename : layout/reftests/forms/progress/values-ref.html => layout/reftests/forms/progress/values-vertical-rtl-ref.html
rename : layout/reftests/forms/progress/values.html => layout/reftests/forms/progress/values-vertical-rtl.html
rename : layout/reftests/forms/progress/values.html => layout/reftests/forms/progress/values-vertical.html
2011-05-16 12:56:06 +02:00
Gavin Sharp
479d8a0b0c
Bug 656815: make loading javascript: URIs in a docshell work for DISALLOW_INHERIT_OWNER loads, r=bz
...
--HG--
extra : rebase_source : 6b0e289ac80ffab967813b06e2e28f2842921b70
2011-05-13 10:40:22 -07:00
Gavin Sharp
0a1ed803a8
Bug 656433: don't allow URIs loaded into the location bar to inherit the currently loaded document's principal, r=bz, r=dao
...
--HG--
extra : rebase_source : 3eed0612c5740d6a52ba5898d7ae130cfadd9641
2011-05-12 10:52:25 -07:00
Joe Drew
80cbe9d66f
Bug 473841 - "ASSERTION: NULL mIconRequest! Multiple calls to OnStopRequest()?"; r=josh,bzbarsky
2011-05-16 15:24:54 -04:00
Steven Michaud
9a43bab618
Ensure compatibility with OS X 10.7's arrowless scrollbar. r=mstange
2011-05-16 12:56:03 -05:00
Ehsan Akhgari
2206815333
Bug 656875 - Use the transformed dirty rectngle when building display list items for stacking context; r=roc
2011-05-16 13:27:24 -04:00
Mike Hommey
1016e27175
Backout bug 644608 because of bustage
2011-05-16 16:29:03 +02:00
Siarhei Siamashka
9b7557a335
Bug 656782 - Runtime CPU features detection does not work for pixman in Android [r=jmuizelaar]
...
Pixman upgrade from bug 640250 resulted in ARM cpu features
not being detected properly in Android. As a result, NEON
optimizations were not used at all.
2011-05-12 15:26:00 -04:00
Mark Finkle
77730ba55f
Bug 654733 - Stop using 'computer' in offline storage notifications (entity changes) [r=wjohnston]
2011-05-16 10:01:44 -04:00
Mike Hommey
b281811c02
Bug 569365 - Remove preprocessor.pl and replace it with Preprocessor.py. r=ted
...
--HG--
rename : config/Expression.py => js/src/config/Expression.py
rename : config/Preprocessor.py => js/src/config/Preprocessor.py
2011-05-16 15:51:21 +02:00
Mike Hommey
f4961e70d3
Fixup for bug 644608. r=ted
2011-05-16 15:49:29 +02:00
Mounir Lamouri
43a7619e54
Bug 656284 - Fix clipped XUL progressmeter on Windows. r=roc
2011-05-16 12:19:27 +02:00
Markus Stange
02b4fd3198
Bug 596600 - Start generating window-level mouse out events at the root EventStateManager. r=smaug
...
--HG--
rename : widget/tests/test_native_mouse_mac.xul => widget/tests/test_bug596600.xul
2011-05-16 15:15:43 +02:00
Mounir Lamouri
d58b2950df
Bug 655065 - Add a -moz-orient CSS property. r=bz
2011-05-10 15:47:46 +02:00
Vivien Nicolas
3ea309cc44
Bug 640630 - about:home advertises add-ons that are installed already [r=mfinkle]
2011-05-17 11:55:05 +02:00