Commit Graph

775 Commits

Author SHA1 Message Date
Masayuki Nakano
42e80d41ca Bug 1130935 part.6 Selection change notification should have selection range and writing mode information r=smaug 2015-05-15 10:18:08 +09:00
Masayuki Nakano
c1741e86a9 Bug 1130935 part.4 nsIMM32Handler::GetCharacterRectOfSelectedTextAt() should return wrting mode if it's necessary r=emk+smaug 2015-05-15 10:18:07 +09:00
Eric Rahm
6f5fa960c3 Bug 1163201 - Part 2: Wrap expensive calls in PR_LOG_TEST. r=froydnj 2015-05-14 10:13:23 -07:00
Eric Rahm
0c5f2525a6 Bug 1163201 - Part 1: Remove instances of #ifdef PR_LOGGING in dom/. r=froydnj
PR_LOGGING is now always defined, we can remove #ifdefs checking for it.
2015-05-14 10:13:23 -07:00
Andrea Marchesini
4ed450c1ad Bug 1161950 - Remove support for createEvent("CloseEvent") / initCloseEvent, r=smaug 2015-05-14 12:25:36 +01:00
Boris Zbarsky
e0f9399b4a Bug 1163898 part 1. Give DOMEventTargetHelper a sane accessor for getting its nsIGlobalObject. r=smaug 2015-05-12 15:56:39 -04:00
Andrea Marchesini
615fe38d14 Bug 1163387 - Rename FileImpl to BlobImpl, r=ehsan 2015-05-12 13:11:03 +01:00
Andrea Marchesini
08c931dc57 Bug 1159401 - Split Blob and File classes, r=bz 2015-05-12 13:09:51 +01:00
Wes Kocher
477215237f Backed out 2 changesets (bug 1159401) for b2g build bustage
Backed out changeset adfee1efb1e1 (bug 1159401)
Backed out changeset 70c63c8546e3 (bug 1159401)
2015-05-11 14:54:02 -07:00
Wes Kocher
ad02ab5ada Backed out changeset 56e4c68dc3da (bug 1163387) for build bustage CLOSED TREE 2015-05-11 13:17:58 -07:00
Andrea Marchesini
4aa3305857 Bug 1163387 - Rename FileImpl to BlobImpl, r=ehsan 2015-05-11 18:50:54 +01:00
Andrea Marchesini
7e0e157266 Bug 1159401 - patch 1 - Split Blob and File in 2 classes, r=bz 2015-05-11 18:50:50 +01:00
Ryan VanderMeulen
64bb0dd547 Backout revisions 4287533203fb and 96a3ebfe09d8 (bug 1159401) for bustage.
CLOSED TREE
2015-05-11 11:43:59 -04:00
Andrea Marchesini
246389cea0 Bug 1159401 - patch 1 - Split Blob and File in 2 classes, r=bz 2015-05-11 15:20:06 +01:00
Olli Pettay
5ea14e08df Bug 1156964, consume tab key also in e10s, r=felipe 2015-05-07 17:20:18 +03:00
Olli Pettay
ef72685a7b Bug 1158633, if EventStateManager::mGestureDownContent is non-null, so should mGestureDownFrameOwner be, r=enndeakin 2015-05-05 19:25:33 +03:00
Ryan VanderMeulen
8343dadf03 Merge inbound to m-c. a=merge 2015-05-04 15:59:00 -04:00
Carsten "Tomcat" Book
cc3a50cf79 Merge mozilla-central to b2g-inbound 2015-05-04 15:26:45 +02:00
Jamin Liu
a721ed32bd Bug 1063444 - Implement LE scan related methods and LE device event. r=joliu, r=mrbkap 2015-05-04 18:59:02 +08:00
Andrew McCreight
c979f253c0 Bug 1152551, part 2 - Fix mode lines in dom/. r=jst 2015-05-03 15:32:37 -04:00
Anthony Tseng
c3e1645f26 Bug 1158425 - Rename _SYNTH event names. r=smaug 2015-05-01 22:06:00 -04:00
Kartikaya Gupta
cdbca691e1 Bug 1013412 - Add a test. r=dvander 2015-05-01 13:31:24 -04:00
Ryan VanderMeulen
f87c951071 Merge m-c to inbound. a=merge
CLOSED TREE
2015-05-01 10:50:07 -04:00
Tooru Fujisawa
c297c97fcf Bug 1158456 - Remove control characters from composition string, and add dom.compositionevent.allow_control_characters pref to control it. r=masayuki 2015-05-01 13:49:29 +09:00
Olli Pettay
f33be33538 bug 1160181, don't deal with EventTargets for which a JS wrapper can't be created, rs=froydnj 2015-04-30 18:36:09 +03:00
Olli Pettay
5532b3f7f9 Bug 524674, nsIEventListenerService: tracking of dynamically added and removed event listeners, r=masayuki 2015-04-28 23:10:05 +03:00
David Parks
27fb5b72a4 Bug 1083365 - Tag NS_MOUSE_EXIT messages as eTopLevel when sending to child process. (r=smaug)
NS_MOUSE_EXIT events were improperly being filtered by the
EventStateManager in the content process.  This patch labels them as
WidgetMouseEvent::eTopLevel to avoid the filtering.
2015-04-28 18:25:05 -07:00
David Major
ed6ca74f4f Bug 1157835: Remove the MSVC_ENABLE_PGO flag from the build system. r=glandium 2015-04-27 19:59:27 -04:00
Boris Zbarsky
f751c0a094 Bug 1157898 part 5. Eliminate the remaining non-ErrorResult consumers of ErrorResult::ErrorCode and make it protected. r=peterv 2015-04-27 09:18:52 -04:00
Boris Zbarsky
b29b29a61d Bug 1157898 part 3. Fix the remaining consumers of rv.ErrorCode() in NS_ENSURE_* expressions to not do that. r=peterv 2015-04-27 09:18:52 -04:00
Boris Zbarsky
6a3f2d3909 Bug 1157898 part 1. Make code of the form "return rv.ErrorCode();" where rv is an ErrorResult use StealNSResult instead. r=peterv
This patch was generated with the following command:

  find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 's/return ([a-zA-Z0-9]+)\.ErrorCode\(\);/return \1.StealNSResult();/'
2015-04-27 09:18:51 -04:00
Kershaw Chang
9d15245a45 Bug 1035748 - WebIDL for DeviceStorageAreaChangedEvent. r=bz 2015-04-23 19:35:00 -04:00
Andrea Marchesini
0a7d105a0f Bug 1156632 - Remove unused forward class declarations - patch 3 - dom/{events,xbl,xslt,xul} and others, r=ehsan 2015-04-22 08:29:18 +02:00
Wes Kocher
b0d2eaae11 Merge m-c to inbound a=merge 2015-04-21 15:35:07 -07:00
Wes Kocher
31bd79a6ac Merge b2ginbound to m-c a=merge 2015-04-21 15:31:59 -07:00
Wes Kocher
7d10c7b370 Merge inbound to m-c a=merge 2015-04-21 15:23:57 -07:00
Rahul
b517abd208 Bug 1152473 - Remove InstallEvent. r=nsm,ehsan 2015-04-20 18:47:13 -07:00
Carsten "Tomcat" Book
e5006ce3c4 Merge mozilla-central to b2g-inbound 2015-04-21 15:37:22 +02:00
Carsten "Tomcat" Book
31a468cefa Merge mozilla-central to fx-team 2015-04-21 15:35:04 +02:00
Maksim Lebedev
6590b339bb Bug 1155207 - Change comparison of warning with aTargetContent and aTargetFrame. r=smaug 2015-04-17 02:41:00 +02:00
Nicolas Silva
d93b5d5970 Bug 1155621 - Make nsIntRect and nsIntPoint typedefs of mozilla::gfx::IntRect and mozilla::gfx::IntPoint. r=Bas 2015-04-21 17:04:57 +02:00
Masayuki Nakano
88db66add8 Bug 1128787 part.2 nsHTMLDocument should clear focus before making itself editable when designMode is enabled and it makes the focused content non-focusable r=smaug+enndeakin 2015-04-21 15:27:10 +09:00
Phil Ringnalda
afbd405312 Backed out changeset ffde08dc5ceb (bug 1154459) for bustage
CLOSED TREE
2015-04-19 08:19:14 -07:00
David Anderson
b5aae329b5 Enable APZ for E10S on Windows for one nightly build. (bug 1154459, r=kats) 2015-04-17 11:49:55 -04:00
Ehsan Akhgari
f03955ed19 Bug 1154679 - Part 2: Remove the usage of is_loosely from test_dragstart.html; r=Ms2ger 2015-04-18 19:10:48 -04:00
Boris Zbarsky
a25c3c13a7 Bug 1153517. Fix mozGetDataAt to return null when it should, like it used to. r=peterv 2015-04-17 22:01:01 -04:00
Morris Tseng
e400bedd2b Bug 1021499 - Skip test if touch caret is enabled. r=roc 2015-03-23 22:45:00 -04:00
Ryan VanderMeulen
0184ad2c22 Merge inbound to m-c. a=merge 2015-04-17 15:44:37 -04:00
Carsten "Tomcat" Book
7067d37105 Backed out changeset 59c97d681f50 (bug 1021499) for suspicion of causing perma R19 test failures 2015-04-17 13:14:54 +02:00
Morris Tseng
faf45a66e6 Bug 1021499 - Skip test if touch caret is enabled. r=roc 2015-03-23 22:45:00 +01:00