Граф коммитов

7026 Коммитов

Автор SHA1 Сообщение Дата
Aryeh Gregor 60fbc97021 Bug 1053190 - Reduce unnecessary inclusion of nsINode.h in headers; r=ehsan 2014-08-18 17:44:50 +03:00
Ed Morley 5559ec0293 Backed out changeset f4b101378a07 (bug 1021527) by request 2014-08-15 16:14:42 +01:00
John Daggett c89334b523 Bug 1053114 - fix serialization of shorthands with token value subproperties. r=heycam 2014-08-14 21:36:25 +09:00
John Daggett a6d33c86fd Bug 1053114 - test other shorthands affected by variable usage. r=heycam 2014-08-14 21:36:25 +09:00
Seth Fowler 983a3f905a Bug 913586 (Part 7) - Update Maybe users in layout. r=dbaron
--HG--
extra : rebase_source : 1bf45d1356d36269ca951b58ebf1e448313c55c5
2014-08-13 15:42:15 -07:00
L. David Baron 0795fbed25 Bug 625289 patch 13 - Test that ::first-line movement doesn't start transitions, i.e., test patch 10 in this series. r=heycam
With the full patch series, all 4 pairs of tests pass.  However, with
patch 10 removed from the patch series, all of the added tests fail
(probably through some interesting interactions).
2014-08-13 15:39:03 -07:00
L. David Baron fd2736dc52 Bug 625289 patch 12 - Tests for transitions on elements that are reframing. r=heycam
The second set of 14 tests all fail (both with and without the patch)
because we don't start transitions when the before state is
display:none (either for style contexts coming out of the undisplayed
map or because we have no current style context because an ancestor is
display:none).

The patch makes all of the first set of 14 tests pass.  Without the
patch, most of these tests fail, except for the 4 testing e1 and the
root.

I presume the four tests that pass prior to the patch pass because the
restyle actually occurs and starts the transition (which is stored on
the element) before the style context is destroyed.
2014-08-13 15:39:02 -07:00
L. David Baron 7ddcba2342 Bug 625289 patch 10 - Check for difference in HasPseudoElementData before starting transitions. r=heycam 2014-08-13 15:39:02 -07:00
Brian Birtles c9b30cafe3 Bug 1052147 - Initialize AnimationPlayer::mPlayState to running state; r=dbaron
The assertion in nsTimeStamp::operator >= occasionally fails due to a null RHS
timestamp when called from AnimationPlayer::GetCurrentTimeDuration, which, in
turn, is called from AnimationPlayer::SetSource.

The issue appears to be that we're not correctly initializing
AnimationPlayer.mPlayState. This value can be running (0) or paused (1) but we
only ever compare against the paused state (i.e. every other value is
effectively treated as running). If we don't initialize this we can end
up in the paused state but with mPauseStart not set to a valid (non-null)
TimeStamp. This creates an inconsistent state since we assume that when we're
paused mPauseStart is non-null, hence the assertion fails.

This gets tickled because, since bug 1040543, we call
AnimationPlayer::SetSource from nsAnimationManager::BuildAnimations *before* we
set mPlayState and mPauseStart.

This patch initializes mPlayState to the running state so we don't accidentally
end up in an inconsistent state.

It also removes some (now unnecessary) initialization of mPlayState and
mPauseStart from nsTransitionManager::ConsiderStartingTransition.

In future we could also consider reworking nsAnimationManager::BuildAnimations
so that we call SetSource on the new animation player *after* setting up its
play state. That may be more correct and would further avoid this problem but
may not be necessary since all that code is likely to change in the near future.
2014-08-13 18:21:45 +09:00
Ms2ger 5b546538b2 Bug 1048780 - Call the standard matches() rather than the proprietary mozMatchesSelector(); r=jst
This also includes a test that mozMatchesSelector is still exposed and works.

--HG--
rename : js/xpconnect/tests/chrome/test_mozMatchesSelector.xul => js/xpconnect/tests/chrome/test_matches.xul
rename : js/xpconnect/tests/mochitest/file_mozMatchesSelector.html => js/xpconnect/tests/mochitest/file_matches.html
2014-08-12 14:30:59 +02:00
Bobby Holley af0cdef94f Bug 1050049 - Whitelist bindings that we actually expect to use in content. r=smaug 2014-08-11 20:06:55 -07:00
Terrence Cole a6741673cf Bug 1033442 - Remove non-pod calloc from MallocProvider and AllocPolicy; r=jonco 2014-08-05 14:06:35 -07:00
Brian Birtles 1e9fc689ae Bug 1040543 part 11 - Make ElementPropertyTransition inherit from Animation instead of AnimationPlayer; r=bz
This patch changes the inheritance of ElementPropertyTransition so that it is
a subclass of Animation not AnimationPlayer.

The only thing special about ElementPropertyTransition is it stores some extra
state for reversing transitions and an extra ValuePortionFor convenience method.
This reversing behavior is implemented by the transition manager by creating
a new AnimationPlayer (i.e. it is *not* a property of the AnimationPlayer). As
a result this extra state can be pushed down to Animation which simplifies the
code significantly.

In future if we implement KeyframeEffect as a separate object we may be able to
push transition-specific state down to KeyframeEffect instead.
2014-08-10 17:06:52 +10:00
Brian Birtles 264bff6b41 Bug 1040543 part 10 - Move mIsLastNotification from AnimationPlayer to Animation; r=bz
In this fourth step of dividing functionality between AnimationPlayer and
Animation, we move the mIsLastNotification and related methods/enums from
AnimationPlayer to Animation.

It is somewhat unclear where this belongs. This member is used to determine
which event to send for CSS Animations. The thinking behind moving this to
Animation is that if an animation that has already dispatched its animationstart
event was transferred to a new animation player with a similar current time then
I think it is expected that such an animation would *not* dispatch another
animationstart event. That suggests that event-state is a property of the
Animation not the AnimationPlayer.

Obviously, this needs to be defined somewhere (namely, the CSS Animations <->
Web Animations integration spec likely to become "CSS Animations Level 4"). Once
that behavior is agreed upon, if AnimationPlayer proves to be the more suitable
home for this member then it should be relatively straightforward to move the
member back at that time.
2014-08-10 17:06:51 +10:00
Brian Birtles 46562ab4f3 Bug 1040543 part 9 - Move IsFinishedTransition from AnimationPlayer to Animation; r=bz
As the third step in dividing functionality between AnimationPlayer and
Animation this patch moves the mIsFinishedTransition member and related methods
from AnimationPlayer to Animation.

At the same time we rename SetFinishedTransition to SetIsFinishedTransition.
2014-08-10 17:06:51 +10:00
Brian Birtles 2520d366a6 Bug 1040543 part 8 - Move timing parameters from AnimationPlayer to Animation; r=bz
As the second step in dividing functionality between AnimationPlayer and
Animation, this patch moves the AnimationTiming member from AnimationPlayer to
Animation.

Most of this patch is simply moving code around. However, one significant
functional difference is that Animation::GetLocalTime() uses the mParentTime
member which is set when the Animation is updated by the player it is attached
to.

Other less significant differences are:

* AnimationPlayer::GetLocalTime is renamed to GetCurrentTimeDuration
  In Web Animations, animation players have a (writeable) "current time" and
  animations have a (read-only) "local time".
  We would call the method simply "GetCurrentTime" (instead of
  "GetCurrentTimeDuration") but GetCurrentTime is the name of the method used in
  the content-facing API where it returns a double.

* "IsCurrent" is defined on both AnimationPlayer and Animation with the version
  in AnimationPlayer serving mostly as a convenience shortcut to the version on
  Animation.

* Animation::GetComputedTiming (previously on AnimationPlayer) now makes the
  timing parameter optional since most of the time it is not needed.
2014-08-10 17:06:50 +10:00
Brian Birtles 8088c0320d Bug 1040543 part 7 - Move keyframe properties from AnimationPlayer to Animation; r=bz
As the first step in dividing the functionality currently contained in
AnimationPlayer between AnimationPlayer and Animation this patch moves the set
of keyframe properties to the Animation.

These properties are returned from the Animation by a couple of Properties()
methods that provide direct access to the member variable. In future it is
anticipated that the non-const version will be replaced with an appropriate
setter function. This will likely happen when we implement a separate
KeyframeEffect object as defined by the Web Animations API.

With regards to error checking, nsAnimationManager checks the result of
AnimationPlayer::GetSource() and handles the case where it is nullptr.
nsTransitionManager, however, simply asserts that GetSource() is never null much
like it also asserts that there is only one property with one segment in the
animation. Eventually this code should be made more generic which will probably
happen in bug 999927.
2014-08-10 17:06:49 +10:00
Brian Birtles b57ec6a9c0 Bug 1040543 part 6 - Rename mAnimations to mPlayers and likewise for similar local variables; r=bz
Now that we have both AnimationPlayer and Animation in use we need to clarify
which object we are referring to. This patch renames a number of member and
local variables to better reflect whether they point to an AnimationPlayer or an
Animation.

This patch is mostly renaming only with one exception. Since we are touching
a number of local variables used in loops (for looping over the array of
animation players) we take the opportunity to replace a number of instances of
uint32_t with size_t since that is the preferred type for array indices now.
2014-08-10 17:06:48 +10:00
Brian Birtles 249039905a Bug 1040543 part 5 - Pass down time from AnimationPlayer to Animation; r=bz
This patch makes AnimationPlayers pass their current time down to the Animation
they are playing.

Since all Animations need from their players is their time, this avoids adding
a pointer back to their AnimationPlayer.
2014-08-10 17:06:48 +10:00
Brian Birtles 8f9311bf63 Bug 1040543 part 4 - Create Animation objects and set on AnimationPlayer; r=bz 2014-08-10 17:06:47 +10:00
Brian Birtles d3002fb8dd Bug 1040543 part 2 - Rename ElementAnimationCollection to AnimationPlayerCollection; r=bz 2014-08-10 17:06:46 +10:00
Brian Birtles 0c90999575 Bug 1040543 part 1 - Move/Rename ElementAnimations to dom::AnimationPlayer; r=bz
This patch renames mozilla::ElementAnimations to mozilla::dom::AnimationPlayer
and moves the code from layout/style/AnimationCommon.cpp to
dom/animation/AnimationPlayer.cpp.

It also moves various helper classes needed by AnimationPlayer to
AnimationPlayer.cpp and moves them from the mozilla::css namespace to the
mozilla namespace.

Beyond that, there are no functional changes contained in this patch.

The renaming of various members and variables that used to refer to
ElementAnimation objects but now refer to AnimationPlayer objects--to give them
a more appropriate name--is performed in a subsequent patch.

--HG--
rename : layout/style/AnimationCommon.cpp => dom/animation/AnimationPlayer.cpp
rename : layout/style/AnimationCommon.h => dom/animation/AnimationPlayer.h
2014-08-10 17:06:44 +10:00
Ryan VanderMeulen 407f12eec4 Backed out changesets 6ee4b6cc240c, a818fd0874fe, and 70803a5f4683 (bug 1033442) for multiple crashtest oranges. 2014-08-08 21:54:58 -04:00
Georgios Kontaxis d6bc08915e Bug 1044181: style loader now annotates classified tracking nodes r=dbaron 2014-08-08 15:16:34 -07:00
Ehsan Akhgari 8165587ed8 Bug 1050845 - Add will-change: auto to full-screen-override.css; r=dbaron 2014-08-08 20:25:21 -04:00
Terrence Cole 529830df2e Bug 1033442 - Remove non-pod calloc from MallocProvider and AllocPolicy; r=jonco 2014-08-05 14:06:35 -07:00
Nicholas Nethercote a7cf4142b4 Bug 1050009 - Initialize pldhash tables with a length, not a capacity. r=roc.
* * *
imported patch rm-dummy-params

--HG--
extra : rebase_source : c25987eb11bae197218d5fc53b77def19afa36ac
2014-08-06 06:31:21 -07:00
Daniel Holbert abbc77f1fc Bug 1032922 part 2: Rename flex-basis's "auto" keyword to "main-size" (but retain "flex:auto" as shorthand for "1 1 main-size"). r=heycam 2014-08-07 22:11:48 -07:00
Daniel Holbert cb313ca766 Bug 1032922 part 1: Give "flex-basis" its own keyword table, instead of having it co-opt kWidthKTable. r=heycam 2014-08-07 22:11:47 -07:00
Ehsan Akhgari 2b84010cb8 Bug 1048246 - Fix more bad implicit constructors in layout; r=roc
--HG--
extra : rebase_source : ed828993139bc70232508364a9f046e38b7d3e06
2014-08-07 19:48:38 -04:00
L. David Baron 57a0eac1db Bug 996796 patch 25 - Remove the old (now-unused) miniflush code (preserving one of the header comments). r=heycam 2014-08-06 22:58:44 -07:00
L. David Baron 79e9b7336f Bug 996796 patch 24 - Use a RestyleTracker for the coalescing in the animation-only style flush (miniflush). r=heycam
This changes the coalescing behavior during the animation-only style
flush by doing tree-based coalescing between the style updates required
by animations and those required by transitions, rather than doing
animations and transitions separately.

Note that both the old and the new code update all
animating/transitioning styles rather than only the throttled styles,
though we should fix that eventually as noted in the FIXME comment in
the code (but only for the existing caller, and not for the new one to
be introduced in bug 960465).

Note that this depends for its correctness on the previous patches to
make the restyling process exact.

The test changes are because the effects of bug 1031688 are changed by
the change in coalescing.  In the old code, we updated transition styles
before animation styles; in the new code we do a single pass over the
tree, which for the relevant test means updating animations on the
parent before transitions on the child, which changes the effects of the
bug.
2014-08-06 22:58:44 -07:00
L. David Baron 3f05e60f5c Bug 996796 patch 23 - Make transition manager ignore StyleContextChanged notifications during an animation-only style update. r=heycam
This will be necessary when we use the restyle tracker for the
animation-only style flush.
2014-08-06 22:58:44 -07:00
L. David Baron a970368ff2 Bug 972199 followup - use crashtest manifest rather than setBoolPref so that all later crashtests aren't affected by the pref change. No review. 2014-08-06 22:58:43 -07:00
Daniel Holbert 3c65e86630 (no bug) Adjust a comment in test_flexbox_flex_shorthand.html. comment-only, DONTBUILD
In particular, I'm:
 - Adding a missing close-quote charater to the flex-grow/flex-shrink line
 - Bringing the spec quote in the flex-basis line up-to-date w/ current spec ED.
2014-08-06 14:40:29 -07:00
Ed Morley ae8dc8469f Backed out changeset 69551e5b1a5d (bug 946065)
--HG--
rename : dom/xul/crashtests/107518-1.xml => content/xul/content/crashtests/107518-1.xml
rename : dom/xul/crashtests/252448-1.xul => content/xul/content/crashtests/252448-1.xul
rename : dom/xul/crashtests/253479-1.xul => content/xul/content/crashtests/253479-1.xul
rename : dom/xul/crashtests/253479-2.xul => content/xul/content/crashtests/253479-2.xul
rename : dom/xul/crashtests/326644-1-inner.xul => content/xul/content/crashtests/326644-1-inner.xul
rename : dom/xul/crashtests/326644-1.html => content/xul/content/crashtests/326644-1.html
rename : dom/xul/crashtests/326644-2-inner.xul => content/xul/content/crashtests/326644-2-inner.xul
rename : dom/xul/crashtests/326644-2.html => content/xul/content/crashtests/326644-2.html
rename : dom/xul/crashtests/326864-1.xul => content/xul/content/crashtests/326864-1.xul
rename : dom/xul/crashtests/326875-1.xul => content/xul/content/crashtests/326875-1.xul
rename : dom/xul/crashtests/326881-1.xul => content/xul/content/crashtests/326881-1.xul
rename : dom/xul/crashtests/329982-1.xhtml => content/xul/content/crashtests/329982-1.xhtml
rename : dom/xul/crashtests/336096-1.xhtml => content/xul/content/crashtests/336096-1.xhtml
rename : dom/xul/crashtests/354611-1.html => content/xul/content/crashtests/354611-1.html
rename : dom/xul/crashtests/360078-1.xhtml => content/xul/content/crashtests/360078-1.xhtml
rename : dom/xul/crashtests/360078-1xbl.xml => content/xul/content/crashtests/360078-1xbl.xml
rename : dom/xul/crashtests/363791-1.xul => content/xul/content/crashtests/363791-1.xul
rename : dom/xul/crashtests/384740-1.xul => content/xul/content/crashtests/384740-1.xul
rename : dom/xul/crashtests/384877-1-inner.xul => content/xul/content/crashtests/384877-1-inner.xul
rename : dom/xul/crashtests/384877-1.html => content/xul/content/crashtests/384877-1.html
rename : dom/xul/crashtests/386947-1.xul => content/xul/content/crashtests/386947-1.xul
rename : dom/xul/crashtests/425821-1.xul => content/xul/content/crashtests/425821-1.xul
rename : dom/xul/crashtests/429085-1.xhtml => content/xul/content/crashtests/429085-1.xhtml
rename : dom/xul/crashtests/431906-1-inner.xul => content/xul/content/crashtests/431906-1-inner.xul
rename : dom/xul/crashtests/431906-1.html => content/xul/content/crashtests/431906-1.html
rename : dom/xul/crashtests/451311-1.xul => content/xul/content/crashtests/451311-1.xul
rename : dom/xul/crashtests/461917-1.xhtml => content/xul/content/crashtests/461917-1.xhtml
rename : dom/xul/crashtests/509719-1-overlay.xul => content/xul/content/crashtests/509719-1-overlay.xul
rename : dom/xul/crashtests/509719-1.xul => content/xul/content/crashtests/509719-1.xul
rename : dom/xul/crashtests/509719-2-overlay.xul => content/xul/content/crashtests/509719-2-overlay.xul
rename : dom/xul/crashtests/509719-2.xul => content/xul/content/crashtests/509719-2.xul
rename : dom/xul/crashtests/crashtests.list => content/xul/content/crashtests/crashtests.list
rename : dom/xul/nsIXULContextMenuBuilder.idl => content/xul/content/public/nsIXULContextMenuBuilder.idl
rename : dom/xul/nsXULContextMenuBuilder.cpp => content/xul/content/src/nsXULContextMenuBuilder.cpp
rename : dom/xul/nsXULContextMenuBuilder.h => content/xul/content/src/nsXULContextMenuBuilder.h
rename : dom/xul/nsXULElement.cpp => content/xul/content/src/nsXULElement.cpp
rename : dom/xul/nsXULElement.h => content/xul/content/src/nsXULElement.h
rename : dom/xul/nsXULPopupListener.cpp => content/xul/content/src/nsXULPopupListener.cpp
rename : dom/xul/nsXULPopupListener.h => content/xul/content/src/nsXULPopupListener.h
rename : dom/xul/test/398289-resource.xul => content/xul/content/test/398289-resource.xul
rename : dom/xul/test/chrome.ini => content/xul/content/test/chrome.ini
rename : dom/xul/test/file_bug236853.rdf => content/xul/content/test/file_bug236853.rdf
rename : dom/xul/test/mochitest.ini => content/xul/content/test/mochitest.ini
rename : dom/xul/test/test_bug233643.xul => content/xul/content/test/test_bug233643.xul
rename : dom/xul/test/test_bug236853.xul => content/xul/content/test/test_bug236853.xul
rename : dom/xul/test/test_bug398289.html => content/xul/content/test/test_bug398289.html
rename : dom/xul/test/test_bug486990.xul => content/xul/content/test/test_bug486990.xul
rename : dom/xul/test/test_bug749367.xul => content/xul/content/test/test_bug749367.xul
rename : dom/xul/test/test_bug775972.xul => content/xul/content/test/test_bug775972.xul
rename : dom/xul/test/test_import_xul_to_content.xul => content/xul/content/test/test_import_xul_to_content.xul
rename : dom/xul/crashtests/326204-1.xul => content/xul/document/crashtests/326204-1.xul
rename : dom/xul/crashtests/344215-1.xul => content/xul/document/crashtests/344215-1.xul
rename : dom/xul/crashtests/386914-1-inner.xul => content/xul/document/crashtests/386914-1-inner.xul
rename : dom/xul/crashtests/386914-1.html => content/xul/document/crashtests/386914-1.html
rename : dom/xul/crashtests/428951-1.xul => content/xul/document/crashtests/428951-1.xul
rename : dom/xul/crashtests/468211-1.xul => content/xul/document/crashtests/468211-1.xul
rename : dom/xul/crashtests/468211-2-binding.xml => content/xul/document/crashtests/468211-2-binding.xml
rename : dom/xul/crashtests/468211-2.xul => content/xul/document/crashtests/468211-2.xul
rename : dom/xul/crashtests/468211-3.xul => content/xul/document/crashtests/468211-3.xul
rename : dom/xul/crashtests/495635-1.xul => content/xul/document/crashtests/495635-1.xul
rename : dom/xul/crashtests/583230.xul => content/xul/document/crashtests/583230.xul
rename : dom/xul/crashtests/extA1.xul => content/xul/document/crashtests/extA1.xul
rename : dom/xul/crashtests/extA2.xul => content/xul/document/crashtests/extA2.xul
rename : dom/xul/crashtests/extB1.xul => content/xul/document/crashtests/extB1.xul
rename : dom/xul/nsIController.idl => content/xul/document/public/nsIController.idl
rename : dom/xul/nsIControllers.idl => content/xul/document/public/nsIControllers.idl
rename : dom/xul/nsIXULDocument.h => content/xul/document/public/nsIXULDocument.h
rename : dom/xul/nsIXULOverlayProvider.idl => content/xul/document/public/nsIXULOverlayProvider.idl
rename : dom/xul/XULDocument.cpp => content/xul/document/src/XULDocument.cpp
rename : dom/xul/XULDocument.h => content/xul/document/src/XULDocument.h
rename : dom/xul/nsForwardReference.h => content/xul/document/src/nsForwardReference.h
rename : dom/xul/nsXULCommandDispatcher.cpp => content/xul/document/src/nsXULCommandDispatcher.cpp
rename : dom/xul/nsXULCommandDispatcher.h => content/xul/document/src/nsXULCommandDispatcher.h
rename : dom/xul/nsXULContentSink.cpp => content/xul/document/src/nsXULContentSink.cpp
rename : dom/xul/nsXULContentSink.h => content/xul/document/src/nsXULContentSink.h
rename : dom/xul/nsXULControllers.cpp => content/xul/document/src/nsXULControllers.cpp
rename : dom/xul/nsXULControllers.h => content/xul/document/src/nsXULControllers.h
rename : dom/xul/nsXULPrototypeCache.cpp => content/xul/document/src/nsXULPrototypeCache.cpp
rename : dom/xul/nsXULPrototypeCache.h => content/xul/document/src/nsXULPrototypeCache.h
rename : dom/xul/nsXULPrototypeDocument.cpp => content/xul/document/src/nsXULPrototypeDocument.cpp
rename : dom/xul/nsXULPrototypeDocument.h => content/xul/document/src/nsXULPrototypeDocument.h
rename : dom/xul/test/bug497875-iframe.xul => content/xul/document/test/bug497875-iframe.xul
rename : dom/xul/test/overlay1_bug335375.xul => content/xul/document/test/overlay1_bug335375.xul
rename : dom/xul/test/overlay2_bug335375.xul => content/xul/document/test/overlay2_bug335375.xul
rename : dom/xul/test/overlay_640158.xul => content/xul/document/test/overlay_640158.xul
rename : dom/xul/test/test_bug199692.xul => content/xul/document/test/test_bug199692.xul
rename : dom/xul/test/test_bug311681.xul => content/xul/document/test/test_bug311681.xul
rename : dom/xul/test/test_bug335375.xul => content/xul/document/test/test_bug335375.xul
rename : dom/xul/test/test_bug391002.xul => content/xul/document/test/test_bug391002.xul
rename : dom/xul/test/test_bug403868.xul => content/xul/document/test/test_bug403868.xul
rename : dom/xul/test/test_bug414907.xul => content/xul/document/test/test_bug414907.xul
rename : dom/xul/test/test_bug418216.xul => content/xul/document/test/test_bug418216.xul
rename : dom/xul/test/test_bug445177.xul => content/xul/document/test/test_bug445177.xul
rename : dom/xul/test/test_bug449457.xul => content/xul/document/test/test_bug449457.xul
rename : dom/xul/test/test_bug468176.xul => content/xul/document/test/test_bug468176.xul
rename : dom/xul/test/test_bug497875.xul => content/xul/document/test/test_bug497875.xul
rename : dom/xul/test/test_bug583948.xul => content/xul/document/test/test_bug583948.xul
rename : dom/xul/test/test_bug640158_overlay_persist.xul => content/xul/document/test/test_bug640158_overlay_persist.xul
rename : dom/xul/test/test_bug757137.xul => content/xul/document/test/test_bug757137.xul
rename : dom/xul/test/window_bug583948.xul => content/xul/document/test/window_bug583948.xul
rename : dom/xul/test/window_bug757137.xul => content/xul/document/test/window_bug757137.xul
rename : dom/xul/moz.build => content/xul/moz.build
rename : dom/xul/templates/moz.build => content/xul/templates/moz.build
rename : dom/xul/templates/nsIXULBuilderListener.idl => content/xul/templates/public/nsIXULBuilderListener.idl
rename : dom/xul/templates/nsIXULSortService.idl => content/xul/templates/public/nsIXULSortService.idl
rename : dom/xul/templates/nsIXULTemplateBuilder.idl => content/xul/templates/public/nsIXULTemplateBuilder.idl
rename : dom/xul/templates/nsIXULTemplateQueryProcessor.idl => content/xul/templates/public/nsIXULTemplateQueryProcessor.idl
rename : dom/xul/templates/nsIXULTemplateResult.idl => content/xul/templates/public/nsIXULTemplateResult.idl
rename : dom/xul/templates/nsIXULTemplateRuleFilter.idl => content/xul/templates/public/nsIXULTemplateRuleFilter.idl
rename : dom/xul/templates/crashtests/257752-1-recursion.rdf => content/xul/templates/src/crashtests/257752-1-recursion.rdf
rename : dom/xul/templates/crashtests/257752-1-recursion.xul => content/xul/templates/src/crashtests/257752-1-recursion.xul
rename : dom/xul/templates/crashtests/329884-1.xul => content/xul/templates/src/crashtests/329884-1.xul
rename : dom/xul/templates/crashtests/330012-1.rdf => content/xul/templates/src/crashtests/330012-1.rdf
rename : dom/xul/templates/crashtests/330012-1.xul => content/xul/templates/src/crashtests/330012-1.xul
rename : dom/xul/templates/crashtests/404346-1.xul => content/xul/templates/src/crashtests/404346-1.xul
rename : dom/xul/templates/crashtests/415019-1.xul => content/xul/templates/src/crashtests/415019-1.xul
rename : dom/xul/templates/crashtests/417840-1.xul => content/xul/templates/src/crashtests/417840-1.xul
rename : dom/xul/templates/crashtests/424418-1.xul => content/xul/templates/src/crashtests/424418-1.xul
rename : dom/xul/templates/crashtests/crashtests.list => content/xul/templates/src/crashtests/crashtests.list
rename : dom/xul/templates/nsContentSupportMap.cpp => content/xul/templates/src/nsContentSupportMap.cpp
rename : dom/xul/templates/nsContentSupportMap.h => content/xul/templates/src/nsContentSupportMap.h
rename : dom/xul/templates/nsContentTestNode.cpp => content/xul/templates/src/nsContentTestNode.cpp
rename : dom/xul/templates/nsContentTestNode.h => content/xul/templates/src/nsContentTestNode.h
rename : dom/xul/templates/nsInstantiationNode.cpp => content/xul/templates/src/nsInstantiationNode.cpp
rename : dom/xul/templates/nsInstantiationNode.h => content/xul/templates/src/nsInstantiationNode.h
rename : dom/xul/templates/nsRDFBinding.cpp => content/xul/templates/src/nsRDFBinding.cpp
rename : dom/xul/templates/nsRDFBinding.h => content/xul/templates/src/nsRDFBinding.h
rename : dom/xul/templates/nsRDFConInstanceTestNode.cpp => content/xul/templates/src/nsRDFConInstanceTestNode.cpp
rename : dom/xul/templates/nsRDFConInstanceTestNode.h => content/xul/templates/src/nsRDFConInstanceTestNode.h
rename : dom/xul/templates/nsRDFConMemberTestNode.cpp => content/xul/templates/src/nsRDFConMemberTestNode.cpp
rename : dom/xul/templates/nsRDFConMemberTestNode.h => content/xul/templates/src/nsRDFConMemberTestNode.h
rename : dom/xul/templates/nsRDFPropertyTestNode.cpp => content/xul/templates/src/nsRDFPropertyTestNode.cpp
rename : dom/xul/templates/nsRDFPropertyTestNode.h => content/xul/templates/src/nsRDFPropertyTestNode.h
rename : dom/xul/templates/nsRDFQuery.cpp => content/xul/templates/src/nsRDFQuery.cpp
rename : dom/xul/templates/nsRDFQuery.h => content/xul/templates/src/nsRDFQuery.h
rename : dom/xul/templates/nsRDFTestNode.h => content/xul/templates/src/nsRDFTestNode.h
rename : dom/xul/templates/nsResourceSet.cpp => content/xul/templates/src/nsResourceSet.cpp
rename : dom/xul/templates/nsResourceSet.h => content/xul/templates/src/nsResourceSet.h
rename : dom/xul/templates/nsRuleNetwork.cpp => content/xul/templates/src/nsRuleNetwork.cpp
rename : dom/xul/templates/nsRuleNetwork.h => content/xul/templates/src/nsRuleNetwork.h
rename : dom/xul/templates/nsTemplateMap.h => content/xul/templates/src/nsTemplateMap.h
rename : dom/xul/templates/nsTemplateMatch.cpp => content/xul/templates/src/nsTemplateMatch.cpp
rename : dom/xul/templates/nsTemplateMatch.h => content/xul/templates/src/nsTemplateMatch.h
rename : dom/xul/templates/nsTemplateRule.cpp => content/xul/templates/src/nsTemplateRule.cpp
rename : dom/xul/templates/nsTemplateRule.h => content/xul/templates/src/nsTemplateRule.h
rename : dom/xul/templates/nsTreeRows.cpp => content/xul/templates/src/nsTreeRows.cpp
rename : dom/xul/templates/nsTreeRows.h => content/xul/templates/src/nsTreeRows.h
rename : dom/xul/templates/nsXMLBinding.cpp => content/xul/templates/src/nsXMLBinding.cpp
rename : dom/xul/templates/nsXMLBinding.h => content/xul/templates/src/nsXMLBinding.h
rename : dom/xul/templates/nsXULContentBuilder.cpp => content/xul/templates/src/nsXULContentBuilder.cpp
rename : dom/xul/templates/nsXULContentUtils.cpp => content/xul/templates/src/nsXULContentUtils.cpp
rename : dom/xul/templates/nsXULContentUtils.h => content/xul/templates/src/nsXULContentUtils.h
rename : dom/xul/templates/nsXULResourceList.h => content/xul/templates/src/nsXULResourceList.h
rename : dom/xul/templates/nsXULSortService.cpp => content/xul/templates/src/nsXULSortService.cpp
rename : dom/xul/templates/nsXULSortService.h => content/xul/templates/src/nsXULSortService.h
rename : dom/xul/templates/nsXULTemplateBuilder.cpp => content/xul/templates/src/nsXULTemplateBuilder.cpp
rename : dom/xul/templates/nsXULTemplateBuilder.h => content/xul/templates/src/nsXULTemplateBuilder.h
rename : dom/xul/templates/nsXULTemplateQueryProcessorRDF.cpp => content/xul/templates/src/nsXULTemplateQueryProcessorRDF.cpp
rename : dom/xul/templates/nsXULTemplateQueryProcessorRDF.h => content/xul/templates/src/nsXULTemplateQueryProcessorRDF.h
rename : dom/xul/templates/nsXULTemplateQueryProcessorStorage.cpp => content/xul/templates/src/nsXULTemplateQueryProcessorStorage.cpp
rename : dom/xul/templates/nsXULTemplateQueryProcessorStorage.h => content/xul/templates/src/nsXULTemplateQueryProcessorStorage.h
rename : dom/xul/templates/nsXULTemplateQueryProcessorXML.cpp => content/xul/templates/src/nsXULTemplateQueryProcessorXML.cpp
rename : dom/xul/templates/nsXULTemplateQueryProcessorXML.h => content/xul/templates/src/nsXULTemplateQueryProcessorXML.h
rename : dom/xul/templates/nsXULTemplateResultRDF.cpp => content/xul/templates/src/nsXULTemplateResultRDF.cpp
rename : dom/xul/templates/nsXULTemplateResultRDF.h => content/xul/templates/src/nsXULTemplateResultRDF.h
rename : dom/xul/templates/nsXULTemplateResultSetRDF.cpp => content/xul/templates/src/nsXULTemplateResultSetRDF.cpp
rename : dom/xul/templates/nsXULTemplateResultSetRDF.h => content/xul/templates/src/nsXULTemplateResultSetRDF.h
rename : dom/xul/templates/nsXULTemplateResultStorage.cpp => content/xul/templates/src/nsXULTemplateResultStorage.cpp
rename : dom/xul/templates/nsXULTemplateResultStorage.h => content/xul/templates/src/nsXULTemplateResultStorage.h
rename : dom/xul/templates/nsXULTemplateResultXML.cpp => content/xul/templates/src/nsXULTemplateResultXML.cpp
rename : dom/xul/templates/nsXULTemplateResultXML.h => content/xul/templates/src/nsXULTemplateResultXML.h
rename : dom/xul/templates/nsXULTreeBuilder.cpp => content/xul/templates/src/nsXULTreeBuilder.cpp
rename : dom/xul/templates/tests/chrome/animals.rdf => content/xul/templates/tests/chrome/animals.rdf
rename : dom/xul/templates/tests/chrome/animals.sqlite => content/xul/templates/tests/chrome/animals.sqlite
rename : dom/xul/templates/tests/chrome/animals.xml => content/xul/templates/tests/chrome/animals.xml
rename : dom/xul/templates/tests/chrome/bug441785-1.rdf => content/xul/templates/tests/chrome/bug441785-1.rdf
rename : dom/xul/templates/tests/chrome/bug441785-2.rdf => content/xul/templates/tests/chrome/bug441785-2.rdf
rename : dom/xul/templates/tests/chrome/chrome.ini => content/xul/templates/tests/chrome/chrome.ini
rename : dom/xul/templates/tests/chrome/file_bug330010.rdf => content/xul/templates/tests/chrome/file_bug330010.rdf
rename : dom/xul/templates/tests/chrome/templates_shared.js => content/xul/templates/tests/chrome/templates_shared.js
rename : dom/xul/templates/tests/chrome/test_bug329335.xul => content/xul/templates/tests/chrome/test_bug329335.xul
rename : dom/xul/templates/tests/chrome/test_bug330010.xul => content/xul/templates/tests/chrome/test_bug330010.xul
rename : dom/xul/templates/tests/chrome/test_bug397148.xul => content/xul/templates/tests/chrome/test_bug397148.xul
rename : dom/xul/templates/tests/chrome/test_bug441785.xul => content/xul/templates/tests/chrome/test_bug441785.xul
rename : dom/xul/templates/tests/chrome/test_bug476634.xul => content/xul/templates/tests/chrome/test_bug476634.xul
rename : dom/xul/templates/tests/chrome/test_sortservice.xul => content/xul/templates/tests/chrome/test_sortservice.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_bindingsextendedsyntax.xul => content/xul/templates/tests/chrome/test_tmpl_bindingsextendedsyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_bindingsmultiple.xul => content/xul/templates/tests/chrome/test_tmpl_bindingsmultiple.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_bindingsquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_bindingsquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_bindingsreversed.xul => content/xul/templates/tests/chrome/test_tmpl_bindingsreversed.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_bindingssameastriple.xul => content/xul/templates/tests/chrome/test_tmpl_bindingssameastriple.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_containerandmembervariablechanged.xul => content/xul/templates/tests/chrome/test_tmpl_containerandmembervariablechanged.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_containervariablechanged.xul => content/xul/templates/tests/chrome/test_tmpl_containervariablechanged.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_containmentattribute.xul => content/xul/templates/tests/chrome/test_tmpl_containmentattribute.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_defaultcontainervariableisuri.xul => content/xul/templates/tests/chrome/test_tmpl_defaultcontainervariableisuri.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_errors.xul => content/xul/templates/tests/chrome/test_tmpl_errors.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_extendedsyntax.xul => content/xul/templates/tests/chrome/test_tmpl_extendedsyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_extendedsyntaxemptyconditions.xul => content/xul/templates/tests/chrome/test_tmpl_extendedsyntaxemptyconditions.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_extendedsyntaxotherrefvariable.xul => content/xul/templates/tests/chrome/test_tmpl_extendedsyntaxotherrefvariable.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_extendedsyntaxremoveunmatched.xul => content/xul/templates/tests/chrome/test_tmpl_extendedsyntaxremoveunmatched.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_extendedsyntaxsimplevariablesubstitution.xul => content/xul/templates/tests/chrome/test_tmpl_extendedsyntaxsimplevariablesubstitution.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_extendedsyntaxtworulesrecurse.xul => content/xul/templates/tests/chrome/test_tmpl_extendedsyntaxtworulesrecurse.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_extendedsyntaxusinganinterveningcontainer.xul => content/xul/templates/tests/chrome/test_tmpl_extendedsyntaxusinganinterveningcontainer.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_extendedvariablesubstitution.xul => content/xul/templates/tests/chrome/test_tmpl_extendedvariablesubstitution.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_gridelement.xul => content/xul/templates/tests/chrome/test_tmpl_gridelement.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_htmlelementextendedsyntaxwithbinding.xul => content/xul/templates/tests/chrome/test_tmpl_htmlelementextendedsyntaxwithbinding.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_htmlelementquerysyntaxrecursive.xul => content/xul/templates/tests/chrome/test_tmpl_htmlelementquerysyntaxrecursive.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_htmlelementquerysyntaxwithmultiplerules.xul => content/xul/templates/tests/chrome/test_tmpl_htmlelementquerysyntaxwithmultiplerules.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_htmlelementsimplesyntax.xul => content/xul/templates/tests/chrome/test_tmpl_htmlelementsimplesyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_htmlelementsimplesyntaxusingatextnode.xul => content/xul/templates/tests/chrome/test_tmpl_htmlelementsimplesyntaxusingatextnode.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_invalidqp.xul => content/xul/templates/tests/chrome/test_tmpl_invalidqp.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_listboxelement.xul => content/xul/templates/tests/chrome/test_tmpl_listboxelement.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_literalasmember.xul => content/xul/templates/tests/chrome/test_tmpl_literalasmember.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_membervariablechanged.xul => content/xul/templates/tests/chrome/test_tmpl_membervariablechanged.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_membervariablesubstitution.xul => content/xul/templates/tests/chrome/test_tmpl_membervariablesubstitution.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_menuelement.xul => content/xul/templates/tests/chrome/test_tmpl_menuelement.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_menuelementrecursive.xul => content/xul/templates/tests/chrome/test_tmpl_menuelementrecursive.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_menulistelement.xul => content/xul/templates/tests/chrome/test_tmpl_menulistelement.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_mixedsyntaxiscontainer.xul => content/xul/templates/tests/chrome/test_tmpl_mixedsyntaxiscontainer.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_mixedsyntaxiscontainerisempty.xul => content/xul/templates/tests/chrome/test_tmpl_mixedsyntaxiscontainerisempty.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_mixedsyntaxisempty.xul => content/xul/templates/tests/chrome/test_tmpl_mixedsyntaxisempty.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_noaction.xul => content/xul/templates/tests/chrome/test_tmpl_noaction.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_noactionuriattribute.xul => content/xul/templates/tests/chrome/test_tmpl_noactionuriattribute.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_parentconditions.xul => content/xul/templates/tests/chrome/test_tmpl_parentconditions.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_parentcontenttag.xul => content/xul/templates/tests/chrome/test_tmpl_parentcontenttag.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_parentsimplesyntax.xul => content/xul/templates/tests/chrome/test_tmpl_parentsimplesyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_query3triples.xul => content/xul/templates/tests/chrome/test_tmpl_query3triples.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_query3tripleswherecontains.xul => content/xul/templates/tests/chrome/test_tmpl_query3tripleswherecontains.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querymember3tripleswhereequals.xul => content/xul/templates/tests/chrome/test_tmpl_querymember3tripleswhereequals.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querymemberandtwotriples.xul => content/xul/templates/tests/chrome/test_tmpl_querymemberandtwotriples.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querymembertriplemembertriple.xul => content/xul/templates/tests/chrome/test_tmpl_querymembertriplemembertriple.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_queryresourcematch.xul => content/xul/templates/tests/chrome/test_tmpl_queryresourcematch.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_queryreversetriple.xul => content/xul/templates/tests/chrome/test_tmpl_queryreversetriple.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_queryselfwithtriple.xul => content/xul/templates/tests/chrome/test_tmpl_queryselfwithtriple.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querysetone.xul => content/xul/templates/tests/chrome/test_tmpl_querysetone.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querysettwo.xul => content/xul/templates/tests/chrome/test_tmpl_querysettwo.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querysettwowithcondition.xul => content/xul/templates/tests/chrome/test_tmpl_querysettwowithcondition.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_querysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querysyntaxmultiplerules.xul => content/xul/templates/tests/chrome/test_tmpl_querysyntaxmultiplerules.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querysyntaxmultiplerulesfirstconditionall.xul => content/xul/templates/tests/chrome/test_tmpl_querysyntaxmultiplerulesfirstconditionall.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querysyntaxmultiplerulestwoconditions.xul => content/xul/templates/tests/chrome/test_tmpl_querysyntaxmultiplerulestwoconditions.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querytripleandmembermerge.xul => content/xul/templates/tests/chrome/test_tmpl_querytripleandmembermerge.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querytripleobjecttosubject.xul => content/xul/templates/tests/chrome/test_tmpl_querytripleobjecttosubject.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querytwomembers.xul => content/xul/templates/tests/chrome/test_tmpl_querytwomembers.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querytwomembersfiltered.xul => content/xul/templates/tests/chrome/test_tmpl_querytwomembersfiltered.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querytwotriples.xul => content/xul/templates/tests/chrome/test_tmpl_querytwotriples.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_queryupwardsmember.xul => content/xul/templates/tests/chrome/test_tmpl_queryupwardsmember.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_queryupwardsmembertripleandfilteringtriple.xul => content/xul/templates/tests/chrome/test_tmpl_queryupwardsmembertripleandfilteringtriple.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_querywithemptyconditions.xul => content/xul/templates/tests/chrome/test_tmpl_querywithemptyconditions.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_referenceasmember.xul => content/xul/templates/tests/chrome/test_tmpl_referenceasmember.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_regenerate.xul => content/xul/templates/tests/chrome/test_tmpl_regenerate.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_selfgenerationextendedsyntax.xul => content/xul/templates/tests/chrome/test_tmpl_selfgenerationextendedsyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_selfgenerationsimplesyntax.xul => content/xul/templates/tests/chrome/test_tmpl_selfgenerationsimplesyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxenclosedinacontainer.xul => content/xul/templates/tests/chrome/test_tmpl_simplesyntaxenclosedinacontainer.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxenclosedinacontainerwitharule.xul => content/xul/templates/tests/chrome/test_tmpl_simplesyntaxenclosedinacontainerwitharule.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxfilter.xul => content/xul/templates/tests/chrome/test_tmpl_simplesyntaxfilter.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxfilterwithmultiplerules.xul => content/xul/templates/tests/chrome/test_tmpl_simplesyntaxfilterwithmultiplerules.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxfilterwithrule.xul => content/xul/templates/tests/chrome/test_tmpl_simplesyntaxfilterwithrule.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxiteratingoverasinglevalue.xul => content/xul/templates/tests/chrome/test_tmpl_simplesyntaxiteratingoverasinglevalue.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxusinganinterveningcontainer.xul => content/xul/templates/tests/chrome/test_tmpl_simplesyntaxusinganinterveningcontainer.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingatextnode.xul => content/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingatextnode.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingcontainerasthegenerationelement.xul => content/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingcontainerasthegenerationelement.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingdontrecurse.xul => content/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingdontrecurse.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingrecursivegeneration.xul => content/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingrecursivegeneration.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingrecursivegenerationagain.xul => content/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingrecursivegenerationagain.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxwithtwovariablesused.xul => content/xul/templates/tests/chrome/test_tmpl_simplesyntaxwithtwovariablesused.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutioncaretsatbeginningandend.xul => content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutioncaretsatbeginningandend.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutioncaretsubstitution.xul => content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutioncaretsubstitution.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionnovariable.xul => content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionnovariable.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionquestionmarkaspartofvariable.xul => content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionquestionmarkaspartofvariable.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionquestionmarksubstitution.xul => content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionquestionmarksubstitution.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutiontextandvariable.xul => content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutiontextandvariable.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionvariableandtextconcatenated.xul => content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionvariableandtextconcatenated.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionvariablesconcatenated.xul => content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionvariablesconcatenated.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sortascendinginteger.xul => content/xul/templates/tests/chrome/test_tmpl_sortascendinginteger.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sortascendingquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sortascendingquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sortascendingtworulesquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sortascendingtworulesquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sortascendingtworuleswithcontainerquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sortascendingtworuleswithcontainerquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sortascendingtworuleswithdifferentcontainerquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sortascendingtworuleswithdifferentcontainerquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sortdescendingquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sortdescendingquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sortquerymemberandtwotriples.xul => content/xul/templates/tests/chrome/test_tmpl_sortquerymemberandtwotriples.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sortresource2descendingsimplesyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sortresource2descendingsimplesyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sortresource2settopredicateascendingquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sortresource2settopredicateascendingquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sortresource2settopredicatedescendingquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sortresource2settopredicatedescendingquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sortresourceascendingquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sortresourceascendingquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sortresourcedescendingquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sortresourcedescendingquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sortresourcesettopredicateascendingquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sortresourcesettopredicateascendingquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sortresourcesettopredicatedescendingquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sortresourcesettopredicatedescendingquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sorttworesourcesasstringsettopredicatedescendingquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sorttworesourcesasstringsettopredicatedescendingquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sorttworesourcessettopredicateascendingquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sorttworesourcessettopredicateascendingquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sorttwovariablesascendingquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sorttwovariablesascendingquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sorttwovariablesascendingsimplesyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sorttwovariablesascendingsimplesyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sorttwovariablesdescendingquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sorttwovariablesdescendingquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_sortunknownascendingquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_sortunknownascendingquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_bad_parameters.xul => content/xul/templates/tests/chrome/test_tmpl_storage_bad_parameters.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_bad_parameters_2.xul => content/xul/templates/tests/chrome/test_tmpl_storage_bad_parameters_2.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_bad_parameters_3.xul => content/xul/templates/tests/chrome/test_tmpl_storage_bad_parameters_3.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_baddatasource.xul => content/xul/templates/tests/chrome/test_tmpl_storage_baddatasource.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_badquery.xul => content/xul/templates/tests/chrome/test_tmpl_storage_badquery.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_dynamicparameters.xul => content/xul/templates/tests/chrome/test_tmpl_storage_dynamicparameters.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_listbox.xul => content/xul/templates/tests/chrome/test_tmpl_storage_listbox.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_multiqueries.xul => content/xul/templates/tests/chrome/test_tmpl_storage_multiqueries.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_parameters.xul => content/xul/templates/tests/chrome/test_tmpl_storage_parameters.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_rule.xul => content/xul/templates/tests/chrome/test_tmpl_storage_rule.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_simple.xul => content/xul/templates/tests/chrome/test_tmpl_storage_simple.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_sortintegerasc.xul => content/xul/templates/tests/chrome/test_tmpl_storage_sortintegerasc.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_sortintegerdesc.xul => content/xul/templates/tests/chrome/test_tmpl_storage_sortintegerdesc.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_sortstringasc.xul => content/xul/templates/tests/chrome/test_tmpl_storage_sortstringasc.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_sortstringdesc.xul => content/xul/templates/tests/chrome/test_tmpl_storage_sortstringdesc.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_storage_tree.xul => content/xul/templates/tests/chrome/test_tmpl_storage_tree.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntax.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntax.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxnotrecursive.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxnotrecursive.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxnotrecursivetreebuilder.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxnotrecursivetreebuilder.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursive.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursive.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursivemultiplerules.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursivemultiplerules.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursivemultiplerulestreebuilder.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursivemultiplerulestreebuilder.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursivetreebuilder.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursivetreebuilder.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxtreebuilder.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxtreebuilder.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxnotrecursive.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxnotrecursive.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxnotrecursivetreebuilder.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxnotrecursivetreebuilder.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxrecursive.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxrecursive.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxrecursivetreebuilder.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxrecursivetreebuilder.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementtreecell.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementtreecell.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementtreecellsortascending.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementtreecellsortascending.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementtreecellsortascendingtreebuilder.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementtreecellsortascendingtreebuilder.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementtreecelltreebuilder.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementtreecelltreebuilder.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementtreeitemonly.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementtreeitemonly.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_treeelementtreeitemsortascending.xul => content/xul/templates/tests/chrome/test_tmpl_treeelementtreeitemsortascending.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_twogenerationnodes.xul => content/xul/templates/tests/chrome/test_tmpl_twogenerationnodes.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereafterignorecase.xul => content/xul/templates/tests/chrome/test_tmpl_whereafterignorecase.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereafterlowercase.xul => content/xul/templates/tests/chrome/test_tmpl_whereafterlowercase.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereafternegation.xul => content/xul/templates/tests/chrome/test_tmpl_whereafternegation.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereafteruppercase.xul => content/xul/templates/tests/chrome/test_tmpl_whereafteruppercase.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherebeforeignorecase.xul => content/xul/templates/tests/chrome/test_tmpl_wherebeforeignorecase.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherebeforelowercase.xul => content/xul/templates/tests/chrome/test_tmpl_wherebeforelowercase.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherebeforenegation.xul => content/xul/templates/tests/chrome/test_tmpl_wherebeforenegation.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherebeforeuppercase.xul => content/xul/templates/tests/chrome/test_tmpl_wherebeforeuppercase.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherecontains.xul => content/xul/templates/tests/chrome/test_tmpl_wherecontains.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherecontainsignorecase.xul => content/xul/templates/tests/chrome/test_tmpl_wherecontainsignorecase.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherecontainsnegation.xul => content/xul/templates/tests/chrome/test_tmpl_wherecontainsnegation.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherecontainsnumber.xul => content/xul/templates/tests/chrome/test_tmpl_wherecontainsnumber.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherecontainsnumberstring.xul => content/xul/templates/tests/chrome/test_tmpl_wherecontainsnumberstring.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherecontainsresource.xul => content/xul/templates/tests/chrome/test_tmpl_wherecontainsresource.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherecontainstwo.xul => content/xul/templates/tests/chrome/test_tmpl_wherecontainstwo.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereendswith.xul => content/xul/templates/tests/chrome/test_tmpl_whereendswith.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereendswithignorecase.xul => content/xul/templates/tests/chrome/test_tmpl_whereendswithignorecase.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereendswithnegation.xul => content/xul/templates/tests/chrome/test_tmpl_whereendswithnegation.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereequals.xul => content/xul/templates/tests/chrome/test_tmpl_whereequals.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereequalsignorecase.xul => content/xul/templates/tests/chrome/test_tmpl_whereequalsignorecase.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereequalsmultiple.xul => content/xul/templates/tests/chrome/test_tmpl_whereequalsmultiple.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereequalsmultiplenegation.xul => content/xul/templates/tests/chrome/test_tmpl_whereequalsmultiplenegation.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereequalsmultiplenegationignorecase.xul => content/xul/templates/tests/chrome/test_tmpl_whereequalsmultiplenegationignorecase.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereequalsnegation.xul => content/xul/templates/tests/chrome/test_tmpl_whereequalsnegation.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereequalsnegationignorecase.xul => content/xul/templates/tests/chrome/test_tmpl_whereequalsnegationignorecase.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereequalsnegationwrongcase.xul => content/xul/templates/tests/chrome/test_tmpl_whereequalsnegationwrongcase.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereequalsnumber.xul => content/xul/templates/tests/chrome/test_tmpl_whereequalsnumber.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereequalsothervariable.xul => content/xul/templates/tests/chrome/test_tmpl_whereequalsothervariable.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereequalsresource.xul => content/xul/templates/tests/chrome/test_tmpl_whereequalsresource.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereequalssamevariable.xul => content/xul/templates/tests/chrome/test_tmpl_whereequalssamevariable.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereequalswrongcase.xul => content/xul/templates/tests/chrome/test_tmpl_whereequalswrongcase.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wheregreater.xul => content/xul/templates/tests/chrome/test_tmpl_wheregreater.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wheregreaternegation.xul => content/xul/templates/tests/chrome/test_tmpl_wheregreaternegation.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wheregreaternegationstring.xul => content/xul/templates/tests/chrome/test_tmpl_wheregreaternegationstring.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wheregreaterstring.xul => content/xul/templates/tests/chrome/test_tmpl_wheregreaterstring.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_whereless.xul => content/xul/templates/tests/chrome/test_tmpl_whereless.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherelessnegation.xul => content/xul/templates/tests/chrome/test_tmpl_wherelessnegation.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherelessnegationstring.xul => content/xul/templates/tests/chrome/test_tmpl_wherelessnegationstring.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherelessstring.xul => content/xul/templates/tests/chrome/test_tmpl_wherelessstring.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherenorel.xul => content/xul/templates/tests/chrome/test_tmpl_wherenorel.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherenosubject.xul => content/xul/templates/tests/chrome/test_tmpl_wherenosubject.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherenovalue.xul => content/xul/templates/tests/chrome/test_tmpl_wherenovalue.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherestartswith.xul => content/xul/templates/tests/chrome/test_tmpl_wherestartswith.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherestartswithignorecase.xul => content/xul/templates/tests/chrome/test_tmpl_wherestartswithignorecase.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherestartswithmultiple.xul => content/xul/templates/tests/chrome/test_tmpl_wherestartswithmultiple.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherestartswithnegation.xul => content/xul/templates/tests/chrome/test_tmpl_wherestartswithnegation.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherestartswithunknownvariable.xul => content/xul/templates/tests/chrome/test_tmpl_wherestartswithunknownvariable.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wherestartswithvariable.xul => content/xul/templates/tests/chrome/test_tmpl_wherestartswithvariable.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wheresubjectequalsvariable.xul => content/xul/templates/tests/chrome/test_tmpl_wheresubjectequalsvariable.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_wheresubjectstartswithvariable.xul => content/xul/templates/tests/chrome/test_tmpl_wheresubjectstartswithvariable.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_xmlquerysimple.xul => content/xul/templates/tests/chrome/test_tmpl_xmlquerysimple.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithassign.xul => content/xul/templates/tests/chrome/test_tmpl_xmlquerywithassign.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithassignmentandcondition.xul => content/xul/templates/tests/chrome/test_tmpl_xmlquerywithassignmentandcondition.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithassignmentandconditiondontrecurse.xul => content/xul/templates/tests/chrome/test_tmpl_xmlquerywithassignmentandconditiondontrecurse.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithbindinginbindings.xul => content/xul/templates/tests/chrome/test_tmpl_xmlquerywithbindinginbindings.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithbindinginrule.xul => content/xul/templates/tests/chrome/test_tmpl_xmlquerywithbindinginrule.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithdifferentmember.xul => content/xul/templates/tests/chrome/test_tmpl_xmlquerywithdifferentmember.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithinlinedata.xul => content/xul/templates/tests/chrome/test_tmpl_xmlquerywithinlinedata.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithinlinedatawithmultiplequeries.xul => content/xul/templates/tests/chrome/test_tmpl_xmlquerywithinlinedatawithmultiplequeries.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithmultiplequeries.xul => content/xul/templates/tests/chrome/test_tmpl_xmlquerywithmultiplequeries.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithothertypes.xul => content/xul/templates/tests/chrome/test_tmpl_xmlquerywithothertypes.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithsort.xul => content/xul/templates/tests/chrome/test_tmpl_xmlquerywithsort.xul
rename : dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithsortotherfield.xul => content/xul/templates/tests/chrome/test_tmpl_xmlquerywithsortotherfield.xul
2014-08-06 17:06:27 +01:00
Birunthan Mohanathas 65def30368 Bug 946065 - Part 9: Move content/xul/ to dom/ and flatten subdirectories. r=janv
--HG--
rename : content/xul/document/src/XULDocument.cpp => dom/xul/XULDocument.cpp
rename : content/xul/document/src/XULDocument.h => dom/xul/XULDocument.h
rename : content/xul/content/crashtests/107518-1.xml => dom/xul/crashtests/107518-1.xml
rename : content/xul/content/crashtests/252448-1.xul => dom/xul/crashtests/252448-1.xul
rename : content/xul/content/crashtests/253479-1.xul => dom/xul/crashtests/253479-1.xul
rename : content/xul/content/crashtests/253479-2.xul => dom/xul/crashtests/253479-2.xul
rename : content/xul/document/crashtests/326204-1.xul => dom/xul/crashtests/326204-1.xul
rename : content/xul/content/crashtests/326644-1-inner.xul => dom/xul/crashtests/326644-1-inner.xul
rename : content/xul/content/crashtests/326644-1.html => dom/xul/crashtests/326644-1.html
rename : content/xul/content/crashtests/326644-2-inner.xul => dom/xul/crashtests/326644-2-inner.xul
rename : content/xul/content/crashtests/326644-2.html => dom/xul/crashtests/326644-2.html
rename : content/xul/content/crashtests/326864-1.xul => dom/xul/crashtests/326864-1.xul
rename : content/xul/content/crashtests/326875-1.xul => dom/xul/crashtests/326875-1.xul
rename : content/xul/content/crashtests/326881-1.xul => dom/xul/crashtests/326881-1.xul
rename : content/xul/content/crashtests/329982-1.xhtml => dom/xul/crashtests/329982-1.xhtml
rename : content/xul/content/crashtests/336096-1.xhtml => dom/xul/crashtests/336096-1.xhtml
rename : content/xul/document/crashtests/344215-1.xul => dom/xul/crashtests/344215-1.xul
rename : content/xul/content/crashtests/354611-1.html => dom/xul/crashtests/354611-1.html
rename : content/xul/content/crashtests/360078-1.xhtml => dom/xul/crashtests/360078-1.xhtml
rename : content/xul/content/crashtests/360078-1xbl.xml => dom/xul/crashtests/360078-1xbl.xml
rename : content/xul/content/crashtests/363791-1.xul => dom/xul/crashtests/363791-1.xul
rename : content/xul/content/crashtests/384740-1.xul => dom/xul/crashtests/384740-1.xul
rename : content/xul/content/crashtests/384877-1-inner.xul => dom/xul/crashtests/384877-1-inner.xul
rename : content/xul/content/crashtests/384877-1.html => dom/xul/crashtests/384877-1.html
rename : content/xul/document/crashtests/386914-1-inner.xul => dom/xul/crashtests/386914-1-inner.xul
rename : content/xul/document/crashtests/386914-1.html => dom/xul/crashtests/386914-1.html
rename : content/xul/content/crashtests/386947-1.xul => dom/xul/crashtests/386947-1.xul
rename : content/xul/content/crashtests/425821-1.xul => dom/xul/crashtests/425821-1.xul
rename : content/xul/document/crashtests/428951-1.xul => dom/xul/crashtests/428951-1.xul
rename : content/xul/content/crashtests/429085-1.xhtml => dom/xul/crashtests/429085-1.xhtml
rename : content/xul/content/crashtests/431906-1-inner.xul => dom/xul/crashtests/431906-1-inner.xul
rename : content/xul/content/crashtests/431906-1.html => dom/xul/crashtests/431906-1.html
rename : content/xul/content/crashtests/451311-1.xul => dom/xul/crashtests/451311-1.xul
rename : content/xul/content/crashtests/461917-1.xhtml => dom/xul/crashtests/461917-1.xhtml
rename : content/xul/document/crashtests/468211-1.xul => dom/xul/crashtests/468211-1.xul
rename : content/xul/document/crashtests/468211-2-binding.xml => dom/xul/crashtests/468211-2-binding.xml
rename : content/xul/document/crashtests/468211-2.xul => dom/xul/crashtests/468211-2.xul
rename : content/xul/document/crashtests/468211-3.xul => dom/xul/crashtests/468211-3.xul
rename : content/xul/document/crashtests/495635-1.xul => dom/xul/crashtests/495635-1.xul
rename : content/xul/content/crashtests/509719-1-overlay.xul => dom/xul/crashtests/509719-1-overlay.xul
rename : content/xul/content/crashtests/509719-1.xul => dom/xul/crashtests/509719-1.xul
rename : content/xul/content/crashtests/509719-2-overlay.xul => dom/xul/crashtests/509719-2-overlay.xul
rename : content/xul/content/crashtests/509719-2.xul => dom/xul/crashtests/509719-2.xul
rename : content/xul/document/crashtests/583230.xul => dom/xul/crashtests/583230.xul
rename : content/xul/content/crashtests/crashtests.list => dom/xul/crashtests/crashtests.list
rename : content/xul/document/crashtests/extA1.xul => dom/xul/crashtests/extA1.xul
rename : content/xul/document/crashtests/extA2.xul => dom/xul/crashtests/extA2.xul
rename : content/xul/document/crashtests/extB1.xul => dom/xul/crashtests/extB1.xul
rename : content/xul/moz.build => dom/xul/moz.build
rename : content/xul/document/src/nsForwardReference.h => dom/xul/nsForwardReference.h
rename : content/xul/document/public/nsIController.idl => dom/xul/nsIController.idl
rename : content/xul/document/public/nsIControllers.idl => dom/xul/nsIControllers.idl
rename : content/xul/content/public/nsIXULContextMenuBuilder.idl => dom/xul/nsIXULContextMenuBuilder.idl
rename : content/xul/document/public/nsIXULDocument.h => dom/xul/nsIXULDocument.h
rename : content/xul/document/public/nsIXULOverlayProvider.idl => dom/xul/nsIXULOverlayProvider.idl
rename : content/xul/document/src/nsXULCommandDispatcher.cpp => dom/xul/nsXULCommandDispatcher.cpp
rename : content/xul/document/src/nsXULCommandDispatcher.h => dom/xul/nsXULCommandDispatcher.h
rename : content/xul/document/src/nsXULContentSink.cpp => dom/xul/nsXULContentSink.cpp
rename : content/xul/document/src/nsXULContentSink.h => dom/xul/nsXULContentSink.h
rename : content/xul/content/src/nsXULContextMenuBuilder.cpp => dom/xul/nsXULContextMenuBuilder.cpp
rename : content/xul/content/src/nsXULContextMenuBuilder.h => dom/xul/nsXULContextMenuBuilder.h
rename : content/xul/document/src/nsXULControllers.cpp => dom/xul/nsXULControllers.cpp
rename : content/xul/document/src/nsXULControllers.h => dom/xul/nsXULControllers.h
rename : content/xul/content/src/nsXULElement.cpp => dom/xul/nsXULElement.cpp
rename : content/xul/content/src/nsXULElement.h => dom/xul/nsXULElement.h
rename : content/xul/content/src/nsXULPopupListener.cpp => dom/xul/nsXULPopupListener.cpp
rename : content/xul/content/src/nsXULPopupListener.h => dom/xul/nsXULPopupListener.h
rename : content/xul/document/src/nsXULPrototypeCache.cpp => dom/xul/nsXULPrototypeCache.cpp
rename : content/xul/document/src/nsXULPrototypeCache.h => dom/xul/nsXULPrototypeCache.h
rename : content/xul/document/src/nsXULPrototypeDocument.cpp => dom/xul/nsXULPrototypeDocument.cpp
rename : content/xul/document/src/nsXULPrototypeDocument.h => dom/xul/nsXULPrototypeDocument.h
rename : content/xul/templates/src/crashtests/257752-1-recursion.rdf => dom/xul/templates/crashtests/257752-1-recursion.rdf
rename : content/xul/templates/src/crashtests/257752-1-recursion.xul => dom/xul/templates/crashtests/257752-1-recursion.xul
rename : content/xul/templates/src/crashtests/329884-1.xul => dom/xul/templates/crashtests/329884-1.xul
rename : content/xul/templates/src/crashtests/330012-1.rdf => dom/xul/templates/crashtests/330012-1.rdf
rename : content/xul/templates/src/crashtests/330012-1.xul => dom/xul/templates/crashtests/330012-1.xul
rename : content/xul/templates/src/crashtests/404346-1.xul => dom/xul/templates/crashtests/404346-1.xul
rename : content/xul/templates/src/crashtests/415019-1.xul => dom/xul/templates/crashtests/415019-1.xul
rename : content/xul/templates/src/crashtests/417840-1.xul => dom/xul/templates/crashtests/417840-1.xul
rename : content/xul/templates/src/crashtests/424418-1.xul => dom/xul/templates/crashtests/424418-1.xul
rename : content/xul/templates/src/crashtests/crashtests.list => dom/xul/templates/crashtests/crashtests.list
rename : content/xul/templates/moz.build => dom/xul/templates/moz.build
rename : content/xul/templates/src/nsContentSupportMap.cpp => dom/xul/templates/nsContentSupportMap.cpp
rename : content/xul/templates/src/nsContentSupportMap.h => dom/xul/templates/nsContentSupportMap.h
rename : content/xul/templates/src/nsContentTestNode.cpp => dom/xul/templates/nsContentTestNode.cpp
rename : content/xul/templates/src/nsContentTestNode.h => dom/xul/templates/nsContentTestNode.h
rename : content/xul/templates/public/nsIXULBuilderListener.idl => dom/xul/templates/nsIXULBuilderListener.idl
rename : content/xul/templates/public/nsIXULSortService.idl => dom/xul/templates/nsIXULSortService.idl
rename : content/xul/templates/public/nsIXULTemplateBuilder.idl => dom/xul/templates/nsIXULTemplateBuilder.idl
rename : content/xul/templates/public/nsIXULTemplateQueryProcessor.idl => dom/xul/templates/nsIXULTemplateQueryProcessor.idl
rename : content/xul/templates/public/nsIXULTemplateResult.idl => dom/xul/templates/nsIXULTemplateResult.idl
rename : content/xul/templates/public/nsIXULTemplateRuleFilter.idl => dom/xul/templates/nsIXULTemplateRuleFilter.idl
rename : content/xul/templates/src/nsInstantiationNode.cpp => dom/xul/templates/nsInstantiationNode.cpp
rename : content/xul/templates/src/nsInstantiationNode.h => dom/xul/templates/nsInstantiationNode.h
rename : content/xul/templates/src/nsRDFBinding.cpp => dom/xul/templates/nsRDFBinding.cpp
rename : content/xul/templates/src/nsRDFBinding.h => dom/xul/templates/nsRDFBinding.h
rename : content/xul/templates/src/nsRDFConInstanceTestNode.cpp => dom/xul/templates/nsRDFConInstanceTestNode.cpp
rename : content/xul/templates/src/nsRDFConInstanceTestNode.h => dom/xul/templates/nsRDFConInstanceTestNode.h
rename : content/xul/templates/src/nsRDFConMemberTestNode.cpp => dom/xul/templates/nsRDFConMemberTestNode.cpp
rename : content/xul/templates/src/nsRDFConMemberTestNode.h => dom/xul/templates/nsRDFConMemberTestNode.h
rename : content/xul/templates/src/nsRDFPropertyTestNode.cpp => dom/xul/templates/nsRDFPropertyTestNode.cpp
rename : content/xul/templates/src/nsRDFPropertyTestNode.h => dom/xul/templates/nsRDFPropertyTestNode.h
rename : content/xul/templates/src/nsRDFQuery.cpp => dom/xul/templates/nsRDFQuery.cpp
rename : content/xul/templates/src/nsRDFQuery.h => dom/xul/templates/nsRDFQuery.h
rename : content/xul/templates/src/nsRDFTestNode.h => dom/xul/templates/nsRDFTestNode.h
rename : content/xul/templates/src/nsResourceSet.cpp => dom/xul/templates/nsResourceSet.cpp
rename : content/xul/templates/src/nsResourceSet.h => dom/xul/templates/nsResourceSet.h
rename : content/xul/templates/src/nsRuleNetwork.cpp => dom/xul/templates/nsRuleNetwork.cpp
rename : content/xul/templates/src/nsRuleNetwork.h => dom/xul/templates/nsRuleNetwork.h
rename : content/xul/templates/src/nsTemplateMap.h => dom/xul/templates/nsTemplateMap.h
rename : content/xul/templates/src/nsTemplateMatch.cpp => dom/xul/templates/nsTemplateMatch.cpp
rename : content/xul/templates/src/nsTemplateMatch.h => dom/xul/templates/nsTemplateMatch.h
rename : content/xul/templates/src/nsTemplateRule.cpp => dom/xul/templates/nsTemplateRule.cpp
rename : content/xul/templates/src/nsTemplateRule.h => dom/xul/templates/nsTemplateRule.h
rename : content/xul/templates/src/nsTreeRows.cpp => dom/xul/templates/nsTreeRows.cpp
rename : content/xul/templates/src/nsTreeRows.h => dom/xul/templates/nsTreeRows.h
rename : content/xul/templates/src/nsXMLBinding.cpp => dom/xul/templates/nsXMLBinding.cpp
rename : content/xul/templates/src/nsXMLBinding.h => dom/xul/templates/nsXMLBinding.h
rename : content/xul/templates/src/nsXULContentBuilder.cpp => dom/xul/templates/nsXULContentBuilder.cpp
rename : content/xul/templates/src/nsXULContentUtils.cpp => dom/xul/templates/nsXULContentUtils.cpp
rename : content/xul/templates/src/nsXULContentUtils.h => dom/xul/templates/nsXULContentUtils.h
rename : content/xul/templates/src/nsXULResourceList.h => dom/xul/templates/nsXULResourceList.h
rename : content/xul/templates/src/nsXULSortService.cpp => dom/xul/templates/nsXULSortService.cpp
rename : content/xul/templates/src/nsXULSortService.h => dom/xul/templates/nsXULSortService.h
rename : content/xul/templates/src/nsXULTemplateBuilder.cpp => dom/xul/templates/nsXULTemplateBuilder.cpp
rename : content/xul/templates/src/nsXULTemplateBuilder.h => dom/xul/templates/nsXULTemplateBuilder.h
rename : content/xul/templates/src/nsXULTemplateQueryProcessorRDF.cpp => dom/xul/templates/nsXULTemplateQueryProcessorRDF.cpp
rename : content/xul/templates/src/nsXULTemplateQueryProcessorRDF.h => dom/xul/templates/nsXULTemplateQueryProcessorRDF.h
rename : content/xul/templates/src/nsXULTemplateQueryProcessorStorage.cpp => dom/xul/templates/nsXULTemplateQueryProcessorStorage.cpp
rename : content/xul/templates/src/nsXULTemplateQueryProcessorStorage.h => dom/xul/templates/nsXULTemplateQueryProcessorStorage.h
rename : content/xul/templates/src/nsXULTemplateQueryProcessorXML.cpp => dom/xul/templates/nsXULTemplateQueryProcessorXML.cpp
rename : content/xul/templates/src/nsXULTemplateQueryProcessorXML.h => dom/xul/templates/nsXULTemplateQueryProcessorXML.h
rename : content/xul/templates/src/nsXULTemplateResultRDF.cpp => dom/xul/templates/nsXULTemplateResultRDF.cpp
rename : content/xul/templates/src/nsXULTemplateResultRDF.h => dom/xul/templates/nsXULTemplateResultRDF.h
rename : content/xul/templates/src/nsXULTemplateResultSetRDF.cpp => dom/xul/templates/nsXULTemplateResultSetRDF.cpp
rename : content/xul/templates/src/nsXULTemplateResultSetRDF.h => dom/xul/templates/nsXULTemplateResultSetRDF.h
rename : content/xul/templates/src/nsXULTemplateResultStorage.cpp => dom/xul/templates/nsXULTemplateResultStorage.cpp
rename : content/xul/templates/src/nsXULTemplateResultStorage.h => dom/xul/templates/nsXULTemplateResultStorage.h
rename : content/xul/templates/src/nsXULTemplateResultXML.cpp => dom/xul/templates/nsXULTemplateResultXML.cpp
rename : content/xul/templates/src/nsXULTemplateResultXML.h => dom/xul/templates/nsXULTemplateResultXML.h
rename : content/xul/templates/src/nsXULTreeBuilder.cpp => dom/xul/templates/nsXULTreeBuilder.cpp
rename : content/xul/templates/tests/chrome/animals.rdf => dom/xul/templates/tests/chrome/animals.rdf
rename : content/xul/templates/tests/chrome/animals.sqlite => dom/xul/templates/tests/chrome/animals.sqlite
rename : content/xul/templates/tests/chrome/animals.xml => dom/xul/templates/tests/chrome/animals.xml
rename : content/xul/templates/tests/chrome/bug441785-1.rdf => dom/xul/templates/tests/chrome/bug441785-1.rdf
rename : content/xul/templates/tests/chrome/bug441785-2.rdf => dom/xul/templates/tests/chrome/bug441785-2.rdf
rename : content/xul/templates/tests/chrome/chrome.ini => dom/xul/templates/tests/chrome/chrome.ini
rename : content/xul/templates/tests/chrome/file_bug330010.rdf => dom/xul/templates/tests/chrome/file_bug330010.rdf
rename : content/xul/templates/tests/chrome/templates_shared.js => dom/xul/templates/tests/chrome/templates_shared.js
rename : content/xul/templates/tests/chrome/test_bug329335.xul => dom/xul/templates/tests/chrome/test_bug329335.xul
rename : content/xul/templates/tests/chrome/test_bug330010.xul => dom/xul/templates/tests/chrome/test_bug330010.xul
rename : content/xul/templates/tests/chrome/test_bug397148.xul => dom/xul/templates/tests/chrome/test_bug397148.xul
rename : content/xul/templates/tests/chrome/test_bug441785.xul => dom/xul/templates/tests/chrome/test_bug441785.xul
rename : content/xul/templates/tests/chrome/test_bug476634.xul => dom/xul/templates/tests/chrome/test_bug476634.xul
rename : content/xul/templates/tests/chrome/test_sortservice.xul => dom/xul/templates/tests/chrome/test_sortservice.xul
rename : content/xul/templates/tests/chrome/test_tmpl_bindingsextendedsyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_bindingsextendedsyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_bindingsmultiple.xul => dom/xul/templates/tests/chrome/test_tmpl_bindingsmultiple.xul
rename : content/xul/templates/tests/chrome/test_tmpl_bindingsquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_bindingsquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_bindingsreversed.xul => dom/xul/templates/tests/chrome/test_tmpl_bindingsreversed.xul
rename : content/xul/templates/tests/chrome/test_tmpl_bindingssameastriple.xul => dom/xul/templates/tests/chrome/test_tmpl_bindingssameastriple.xul
rename : content/xul/templates/tests/chrome/test_tmpl_containerandmembervariablechanged.xul => dom/xul/templates/tests/chrome/test_tmpl_containerandmembervariablechanged.xul
rename : content/xul/templates/tests/chrome/test_tmpl_containervariablechanged.xul => dom/xul/templates/tests/chrome/test_tmpl_containervariablechanged.xul
rename : content/xul/templates/tests/chrome/test_tmpl_containmentattribute.xul => dom/xul/templates/tests/chrome/test_tmpl_containmentattribute.xul
rename : content/xul/templates/tests/chrome/test_tmpl_defaultcontainervariableisuri.xul => dom/xul/templates/tests/chrome/test_tmpl_defaultcontainervariableisuri.xul
rename : content/xul/templates/tests/chrome/test_tmpl_errors.xul => dom/xul/templates/tests/chrome/test_tmpl_errors.xul
rename : content/xul/templates/tests/chrome/test_tmpl_extendedsyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_extendedsyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_extendedsyntaxemptyconditions.xul => dom/xul/templates/tests/chrome/test_tmpl_extendedsyntaxemptyconditions.xul
rename : content/xul/templates/tests/chrome/test_tmpl_extendedsyntaxotherrefvariable.xul => dom/xul/templates/tests/chrome/test_tmpl_extendedsyntaxotherrefvariable.xul
rename : content/xul/templates/tests/chrome/test_tmpl_extendedsyntaxremoveunmatched.xul => dom/xul/templates/tests/chrome/test_tmpl_extendedsyntaxremoveunmatched.xul
rename : content/xul/templates/tests/chrome/test_tmpl_extendedsyntaxsimplevariablesubstitution.xul => dom/xul/templates/tests/chrome/test_tmpl_extendedsyntaxsimplevariablesubstitution.xul
rename : content/xul/templates/tests/chrome/test_tmpl_extendedsyntaxtworulesrecurse.xul => dom/xul/templates/tests/chrome/test_tmpl_extendedsyntaxtworulesrecurse.xul
rename : content/xul/templates/tests/chrome/test_tmpl_extendedsyntaxusinganinterveningcontainer.xul => dom/xul/templates/tests/chrome/test_tmpl_extendedsyntaxusinganinterveningcontainer.xul
rename : content/xul/templates/tests/chrome/test_tmpl_extendedvariablesubstitution.xul => dom/xul/templates/tests/chrome/test_tmpl_extendedvariablesubstitution.xul
rename : content/xul/templates/tests/chrome/test_tmpl_gridelement.xul => dom/xul/templates/tests/chrome/test_tmpl_gridelement.xul
rename : content/xul/templates/tests/chrome/test_tmpl_htmlelementextendedsyntaxwithbinding.xul => dom/xul/templates/tests/chrome/test_tmpl_htmlelementextendedsyntaxwithbinding.xul
rename : content/xul/templates/tests/chrome/test_tmpl_htmlelementquerysyntaxrecursive.xul => dom/xul/templates/tests/chrome/test_tmpl_htmlelementquerysyntaxrecursive.xul
rename : content/xul/templates/tests/chrome/test_tmpl_htmlelementquerysyntaxwithmultiplerules.xul => dom/xul/templates/tests/chrome/test_tmpl_htmlelementquerysyntaxwithmultiplerules.xul
rename : content/xul/templates/tests/chrome/test_tmpl_htmlelementsimplesyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_htmlelementsimplesyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_htmlelementsimplesyntaxusingatextnode.xul => dom/xul/templates/tests/chrome/test_tmpl_htmlelementsimplesyntaxusingatextnode.xul
rename : content/xul/templates/tests/chrome/test_tmpl_invalidqp.xul => dom/xul/templates/tests/chrome/test_tmpl_invalidqp.xul
rename : content/xul/templates/tests/chrome/test_tmpl_listboxelement.xul => dom/xul/templates/tests/chrome/test_tmpl_listboxelement.xul
rename : content/xul/templates/tests/chrome/test_tmpl_literalasmember.xul => dom/xul/templates/tests/chrome/test_tmpl_literalasmember.xul
rename : content/xul/templates/tests/chrome/test_tmpl_membervariablechanged.xul => dom/xul/templates/tests/chrome/test_tmpl_membervariablechanged.xul
rename : content/xul/templates/tests/chrome/test_tmpl_membervariablesubstitution.xul => dom/xul/templates/tests/chrome/test_tmpl_membervariablesubstitution.xul
rename : content/xul/templates/tests/chrome/test_tmpl_menuelement.xul => dom/xul/templates/tests/chrome/test_tmpl_menuelement.xul
rename : content/xul/templates/tests/chrome/test_tmpl_menuelementrecursive.xul => dom/xul/templates/tests/chrome/test_tmpl_menuelementrecursive.xul
rename : content/xul/templates/tests/chrome/test_tmpl_menulistelement.xul => dom/xul/templates/tests/chrome/test_tmpl_menulistelement.xul
rename : content/xul/templates/tests/chrome/test_tmpl_mixedsyntaxiscontainer.xul => dom/xul/templates/tests/chrome/test_tmpl_mixedsyntaxiscontainer.xul
rename : content/xul/templates/tests/chrome/test_tmpl_mixedsyntaxiscontainerisempty.xul => dom/xul/templates/tests/chrome/test_tmpl_mixedsyntaxiscontainerisempty.xul
rename : content/xul/templates/tests/chrome/test_tmpl_mixedsyntaxisempty.xul => dom/xul/templates/tests/chrome/test_tmpl_mixedsyntaxisempty.xul
rename : content/xul/templates/tests/chrome/test_tmpl_noaction.xul => dom/xul/templates/tests/chrome/test_tmpl_noaction.xul
rename : content/xul/templates/tests/chrome/test_tmpl_noactionuriattribute.xul => dom/xul/templates/tests/chrome/test_tmpl_noactionuriattribute.xul
rename : content/xul/templates/tests/chrome/test_tmpl_parentconditions.xul => dom/xul/templates/tests/chrome/test_tmpl_parentconditions.xul
rename : content/xul/templates/tests/chrome/test_tmpl_parentcontenttag.xul => dom/xul/templates/tests/chrome/test_tmpl_parentcontenttag.xul
rename : content/xul/templates/tests/chrome/test_tmpl_parentsimplesyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_parentsimplesyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_query3triples.xul => dom/xul/templates/tests/chrome/test_tmpl_query3triples.xul
rename : content/xul/templates/tests/chrome/test_tmpl_query3tripleswherecontains.xul => dom/xul/templates/tests/chrome/test_tmpl_query3tripleswherecontains.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querymember3tripleswhereequals.xul => dom/xul/templates/tests/chrome/test_tmpl_querymember3tripleswhereequals.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querymemberandtwotriples.xul => dom/xul/templates/tests/chrome/test_tmpl_querymemberandtwotriples.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querymembertriplemembertriple.xul => dom/xul/templates/tests/chrome/test_tmpl_querymembertriplemembertriple.xul
rename : content/xul/templates/tests/chrome/test_tmpl_queryresourcematch.xul => dom/xul/templates/tests/chrome/test_tmpl_queryresourcematch.xul
rename : content/xul/templates/tests/chrome/test_tmpl_queryreversetriple.xul => dom/xul/templates/tests/chrome/test_tmpl_queryreversetriple.xul
rename : content/xul/templates/tests/chrome/test_tmpl_queryselfwithtriple.xul => dom/xul/templates/tests/chrome/test_tmpl_queryselfwithtriple.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querysetone.xul => dom/xul/templates/tests/chrome/test_tmpl_querysetone.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querysettwo.xul => dom/xul/templates/tests/chrome/test_tmpl_querysettwo.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querysettwowithcondition.xul => dom/xul/templates/tests/chrome/test_tmpl_querysettwowithcondition.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_querysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querysyntaxmultiplerules.xul => dom/xul/templates/tests/chrome/test_tmpl_querysyntaxmultiplerules.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querysyntaxmultiplerulesfirstconditionall.xul => dom/xul/templates/tests/chrome/test_tmpl_querysyntaxmultiplerulesfirstconditionall.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querysyntaxmultiplerulestwoconditions.xul => dom/xul/templates/tests/chrome/test_tmpl_querysyntaxmultiplerulestwoconditions.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querytripleandmembermerge.xul => dom/xul/templates/tests/chrome/test_tmpl_querytripleandmembermerge.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querytripleobjecttosubject.xul => dom/xul/templates/tests/chrome/test_tmpl_querytripleobjecttosubject.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querytwomembers.xul => dom/xul/templates/tests/chrome/test_tmpl_querytwomembers.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querytwomembersfiltered.xul => dom/xul/templates/tests/chrome/test_tmpl_querytwomembersfiltered.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querytwotriples.xul => dom/xul/templates/tests/chrome/test_tmpl_querytwotriples.xul
rename : content/xul/templates/tests/chrome/test_tmpl_queryupwardsmember.xul => dom/xul/templates/tests/chrome/test_tmpl_queryupwardsmember.xul
rename : content/xul/templates/tests/chrome/test_tmpl_queryupwardsmembertripleandfilteringtriple.xul => dom/xul/templates/tests/chrome/test_tmpl_queryupwardsmembertripleandfilteringtriple.xul
rename : content/xul/templates/tests/chrome/test_tmpl_querywithemptyconditions.xul => dom/xul/templates/tests/chrome/test_tmpl_querywithemptyconditions.xul
rename : content/xul/templates/tests/chrome/test_tmpl_referenceasmember.xul => dom/xul/templates/tests/chrome/test_tmpl_referenceasmember.xul
rename : content/xul/templates/tests/chrome/test_tmpl_regenerate.xul => dom/xul/templates/tests/chrome/test_tmpl_regenerate.xul
rename : content/xul/templates/tests/chrome/test_tmpl_selfgenerationextendedsyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_selfgenerationextendedsyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_selfgenerationsimplesyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_selfgenerationsimplesyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplesyntaxenclosedinacontainer.xul => dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxenclosedinacontainer.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplesyntaxenclosedinacontainerwitharule.xul => dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxenclosedinacontainerwitharule.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplesyntaxfilter.xul => dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxfilter.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplesyntaxfilterwithmultiplerules.xul => dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxfilterwithmultiplerules.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplesyntaxfilterwithrule.xul => dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxfilterwithrule.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplesyntaxiteratingoverasinglevalue.xul => dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxiteratingoverasinglevalue.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplesyntaxusinganinterveningcontainer.xul => dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxusinganinterveningcontainer.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingatextnode.xul => dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingatextnode.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingcontainerasthegenerationelement.xul => dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingcontainerasthegenerationelement.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingdontrecurse.xul => dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingdontrecurse.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingrecursivegeneration.xul => dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingrecursivegeneration.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingrecursivegenerationagain.xul => dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxusingrecursivegenerationagain.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplesyntaxwithtwovariablesused.xul => dom/xul/templates/tests/chrome/test_tmpl_simplesyntaxwithtwovariablesused.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutioncaretsatbeginningandend.xul => dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutioncaretsatbeginningandend.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutioncaretsubstitution.xul => dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutioncaretsubstitution.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionnovariable.xul => dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionnovariable.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionquestionmarkaspartofvariable.xul => dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionquestionmarkaspartofvariable.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionquestionmarksubstitution.xul => dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionquestionmarksubstitution.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutiontextandvariable.xul => dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutiontextandvariable.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionvariableandtextconcatenated.xul => dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionvariableandtextconcatenated.xul
rename : content/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionvariablesconcatenated.xul => dom/xul/templates/tests/chrome/test_tmpl_simplevariablesubstitutionvariablesconcatenated.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sortascendinginteger.xul => dom/xul/templates/tests/chrome/test_tmpl_sortascendinginteger.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sortascendingquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sortascendingquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sortascendingtworulesquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sortascendingtworulesquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sortascendingtworuleswithcontainerquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sortascendingtworuleswithcontainerquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sortascendingtworuleswithdifferentcontainerquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sortascendingtworuleswithdifferentcontainerquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sortdescendingquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sortdescendingquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sortquerymemberandtwotriples.xul => dom/xul/templates/tests/chrome/test_tmpl_sortquerymemberandtwotriples.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sortresource2descendingsimplesyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sortresource2descendingsimplesyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sortresource2settopredicateascendingquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sortresource2settopredicateascendingquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sortresource2settopredicatedescendingquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sortresource2settopredicatedescendingquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sortresourceascendingquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sortresourceascendingquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sortresourcedescendingquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sortresourcedescendingquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sortresourcesettopredicateascendingquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sortresourcesettopredicateascendingquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sortresourcesettopredicatedescendingquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sortresourcesettopredicatedescendingquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sorttworesourcesasstringsettopredicatedescendingquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sorttworesourcesasstringsettopredicatedescendingquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sorttworesourcessettopredicateascendingquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sorttworesourcessettopredicateascendingquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sorttwovariablesascendingquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sorttwovariablesascendingquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sorttwovariablesascendingsimplesyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sorttwovariablesascendingsimplesyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sorttwovariablesdescendingquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sorttwovariablesdescendingquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_sortunknownascendingquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_sortunknownascendingquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_bad_parameters.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_bad_parameters.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_bad_parameters_2.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_bad_parameters_2.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_bad_parameters_3.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_bad_parameters_3.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_baddatasource.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_baddatasource.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_badquery.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_badquery.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_dynamicparameters.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_dynamicparameters.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_listbox.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_listbox.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_multiqueries.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_multiqueries.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_parameters.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_parameters.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_rule.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_rule.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_simple.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_simple.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_sortintegerasc.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_sortintegerasc.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_sortintegerdesc.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_sortintegerdesc.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_sortstringasc.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_sortstringasc.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_sortstringdesc.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_sortstringdesc.xul
rename : content/xul/templates/tests/chrome/test_tmpl_storage_tree.xul => dom/xul/templates/tests/chrome/test_tmpl_storage_tree.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntax.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntax.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxnotrecursive.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxnotrecursive.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxnotrecursivetreebuilder.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxnotrecursivetreebuilder.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursive.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursive.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursivemultiplerules.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursivemultiplerules.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursivemultiplerulestreebuilder.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursivemultiplerulestreebuilder.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursivetreebuilder.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxrecursivetreebuilder.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxtreebuilder.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementquerysyntaxtreebuilder.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxnotrecursive.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxnotrecursive.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxnotrecursivetreebuilder.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxnotrecursivetreebuilder.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxrecursive.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxrecursive.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxrecursivetreebuilder.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementsimplesyntaxrecursivetreebuilder.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementtreecell.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementtreecell.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementtreecellsortascending.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementtreecellsortascending.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementtreecellsortascendingtreebuilder.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementtreecellsortascendingtreebuilder.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementtreecelltreebuilder.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementtreecelltreebuilder.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementtreeitemonly.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementtreeitemonly.xul
rename : content/xul/templates/tests/chrome/test_tmpl_treeelementtreeitemsortascending.xul => dom/xul/templates/tests/chrome/test_tmpl_treeelementtreeitemsortascending.xul
rename : content/xul/templates/tests/chrome/test_tmpl_twogenerationnodes.xul => dom/xul/templates/tests/chrome/test_tmpl_twogenerationnodes.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereafterignorecase.xul => dom/xul/templates/tests/chrome/test_tmpl_whereafterignorecase.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereafterlowercase.xul => dom/xul/templates/tests/chrome/test_tmpl_whereafterlowercase.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereafternegation.xul => dom/xul/templates/tests/chrome/test_tmpl_whereafternegation.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereafteruppercase.xul => dom/xul/templates/tests/chrome/test_tmpl_whereafteruppercase.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherebeforeignorecase.xul => dom/xul/templates/tests/chrome/test_tmpl_wherebeforeignorecase.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherebeforelowercase.xul => dom/xul/templates/tests/chrome/test_tmpl_wherebeforelowercase.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherebeforenegation.xul => dom/xul/templates/tests/chrome/test_tmpl_wherebeforenegation.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherebeforeuppercase.xul => dom/xul/templates/tests/chrome/test_tmpl_wherebeforeuppercase.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherecontains.xul => dom/xul/templates/tests/chrome/test_tmpl_wherecontains.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherecontainsignorecase.xul => dom/xul/templates/tests/chrome/test_tmpl_wherecontainsignorecase.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherecontainsnegation.xul => dom/xul/templates/tests/chrome/test_tmpl_wherecontainsnegation.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherecontainsnumber.xul => dom/xul/templates/tests/chrome/test_tmpl_wherecontainsnumber.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherecontainsnumberstring.xul => dom/xul/templates/tests/chrome/test_tmpl_wherecontainsnumberstring.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherecontainsresource.xul => dom/xul/templates/tests/chrome/test_tmpl_wherecontainsresource.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherecontainstwo.xul => dom/xul/templates/tests/chrome/test_tmpl_wherecontainstwo.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereendswith.xul => dom/xul/templates/tests/chrome/test_tmpl_whereendswith.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereendswithignorecase.xul => dom/xul/templates/tests/chrome/test_tmpl_whereendswithignorecase.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereendswithnegation.xul => dom/xul/templates/tests/chrome/test_tmpl_whereendswithnegation.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereequals.xul => dom/xul/templates/tests/chrome/test_tmpl_whereequals.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereequalsignorecase.xul => dom/xul/templates/tests/chrome/test_tmpl_whereequalsignorecase.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereequalsmultiple.xul => dom/xul/templates/tests/chrome/test_tmpl_whereequalsmultiple.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereequalsmultiplenegation.xul => dom/xul/templates/tests/chrome/test_tmpl_whereequalsmultiplenegation.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereequalsmultiplenegationignorecase.xul => dom/xul/templates/tests/chrome/test_tmpl_whereequalsmultiplenegationignorecase.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereequalsnegation.xul => dom/xul/templates/tests/chrome/test_tmpl_whereequalsnegation.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereequalsnegationignorecase.xul => dom/xul/templates/tests/chrome/test_tmpl_whereequalsnegationignorecase.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereequalsnegationwrongcase.xul => dom/xul/templates/tests/chrome/test_tmpl_whereequalsnegationwrongcase.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereequalsnumber.xul => dom/xul/templates/tests/chrome/test_tmpl_whereequalsnumber.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereequalsothervariable.xul => dom/xul/templates/tests/chrome/test_tmpl_whereequalsothervariable.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereequalsresource.xul => dom/xul/templates/tests/chrome/test_tmpl_whereequalsresource.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereequalssamevariable.xul => dom/xul/templates/tests/chrome/test_tmpl_whereequalssamevariable.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereequalswrongcase.xul => dom/xul/templates/tests/chrome/test_tmpl_whereequalswrongcase.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wheregreater.xul => dom/xul/templates/tests/chrome/test_tmpl_wheregreater.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wheregreaternegation.xul => dom/xul/templates/tests/chrome/test_tmpl_wheregreaternegation.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wheregreaternegationstring.xul => dom/xul/templates/tests/chrome/test_tmpl_wheregreaternegationstring.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wheregreaterstring.xul => dom/xul/templates/tests/chrome/test_tmpl_wheregreaterstring.xul
rename : content/xul/templates/tests/chrome/test_tmpl_whereless.xul => dom/xul/templates/tests/chrome/test_tmpl_whereless.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherelessnegation.xul => dom/xul/templates/tests/chrome/test_tmpl_wherelessnegation.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherelessnegationstring.xul => dom/xul/templates/tests/chrome/test_tmpl_wherelessnegationstring.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherelessstring.xul => dom/xul/templates/tests/chrome/test_tmpl_wherelessstring.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherenorel.xul => dom/xul/templates/tests/chrome/test_tmpl_wherenorel.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherenosubject.xul => dom/xul/templates/tests/chrome/test_tmpl_wherenosubject.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherenovalue.xul => dom/xul/templates/tests/chrome/test_tmpl_wherenovalue.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherestartswith.xul => dom/xul/templates/tests/chrome/test_tmpl_wherestartswith.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherestartswithignorecase.xul => dom/xul/templates/tests/chrome/test_tmpl_wherestartswithignorecase.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherestartswithmultiple.xul => dom/xul/templates/tests/chrome/test_tmpl_wherestartswithmultiple.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherestartswithnegation.xul => dom/xul/templates/tests/chrome/test_tmpl_wherestartswithnegation.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherestartswithunknownvariable.xul => dom/xul/templates/tests/chrome/test_tmpl_wherestartswithunknownvariable.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wherestartswithvariable.xul => dom/xul/templates/tests/chrome/test_tmpl_wherestartswithvariable.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wheresubjectequalsvariable.xul => dom/xul/templates/tests/chrome/test_tmpl_wheresubjectequalsvariable.xul
rename : content/xul/templates/tests/chrome/test_tmpl_wheresubjectstartswithvariable.xul => dom/xul/templates/tests/chrome/test_tmpl_wheresubjectstartswithvariable.xul
rename : content/xul/templates/tests/chrome/test_tmpl_xmlquerysimple.xul => dom/xul/templates/tests/chrome/test_tmpl_xmlquerysimple.xul
rename : content/xul/templates/tests/chrome/test_tmpl_xmlquerywithassign.xul => dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithassign.xul
rename : content/xul/templates/tests/chrome/test_tmpl_xmlquerywithassignmentandcondition.xul => dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithassignmentandcondition.xul
rename : content/xul/templates/tests/chrome/test_tmpl_xmlquerywithassignmentandconditiondontrecurse.xul => dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithassignmentandconditiondontrecurse.xul
rename : content/xul/templates/tests/chrome/test_tmpl_xmlquerywithbindinginbindings.xul => dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithbindinginbindings.xul
rename : content/xul/templates/tests/chrome/test_tmpl_xmlquerywithbindinginrule.xul => dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithbindinginrule.xul
rename : content/xul/templates/tests/chrome/test_tmpl_xmlquerywithdifferentmember.xul => dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithdifferentmember.xul
rename : content/xul/templates/tests/chrome/test_tmpl_xmlquerywithinlinedata.xul => dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithinlinedata.xul
rename : content/xul/templates/tests/chrome/test_tmpl_xmlquerywithinlinedatawithmultiplequeries.xul => dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithinlinedatawithmultiplequeries.xul
rename : content/xul/templates/tests/chrome/test_tmpl_xmlquerywithmultiplequeries.xul => dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithmultiplequeries.xul
rename : content/xul/templates/tests/chrome/test_tmpl_xmlquerywithothertypes.xul => dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithothertypes.xul
rename : content/xul/templates/tests/chrome/test_tmpl_xmlquerywithsort.xul => dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithsort.xul
rename : content/xul/templates/tests/chrome/test_tmpl_xmlquerywithsortotherfield.xul => dom/xul/templates/tests/chrome/test_tmpl_xmlquerywithsortotherfield.xul
rename : content/xul/content/test/398289-resource.xul => dom/xul/test/398289-resource.xul
rename : content/xul/document/test/bug497875-iframe.xul => dom/xul/test/bug497875-iframe.xul
rename : content/xul/content/test/chrome.ini => dom/xul/test/chrome.ini
rename : content/xul/content/test/file_bug236853.rdf => dom/xul/test/file_bug236853.rdf
rename : content/xul/content/test/mochitest.ini => dom/xul/test/mochitest.ini
rename : content/xul/document/test/overlay1_bug335375.xul => dom/xul/test/overlay1_bug335375.xul
rename : content/xul/document/test/overlay2_bug335375.xul => dom/xul/test/overlay2_bug335375.xul
rename : content/xul/document/test/overlay_640158.xul => dom/xul/test/overlay_640158.xul
rename : content/xul/document/test/test_bug199692.xul => dom/xul/test/test_bug199692.xul
rename : content/xul/content/test/test_bug233643.xul => dom/xul/test/test_bug233643.xul
rename : content/xul/content/test/test_bug236853.xul => dom/xul/test/test_bug236853.xul
rename : content/xul/document/test/test_bug311681.xul => dom/xul/test/test_bug311681.xul
rename : content/xul/document/test/test_bug335375.xul => dom/xul/test/test_bug335375.xul
rename : content/xul/document/test/test_bug391002.xul => dom/xul/test/test_bug391002.xul
rename : content/xul/content/test/test_bug398289.html => dom/xul/test/test_bug398289.html
rename : content/xul/document/test/test_bug403868.xul => dom/xul/test/test_bug403868.xul
rename : content/xul/document/test/test_bug414907.xul => dom/xul/test/test_bug414907.xul
rename : content/xul/document/test/test_bug418216.xul => dom/xul/test/test_bug418216.xul
rename : content/xul/document/test/test_bug445177.xul => dom/xul/test/test_bug445177.xul
rename : content/xul/document/test/test_bug449457.xul => dom/xul/test/test_bug449457.xul
rename : content/xul/document/test/test_bug468176.xul => dom/xul/test/test_bug468176.xul
rename : content/xul/content/test/test_bug486990.xul => dom/xul/test/test_bug486990.xul
rename : content/xul/document/test/test_bug497875.xul => dom/xul/test/test_bug497875.xul
rename : content/xul/document/test/test_bug583948.xul => dom/xul/test/test_bug583948.xul
rename : content/xul/document/test/test_bug640158_overlay_persist.xul => dom/xul/test/test_bug640158_overlay_persist.xul
rename : content/xul/content/test/test_bug749367.xul => dom/xul/test/test_bug749367.xul
rename : content/xul/document/test/test_bug757137.xul => dom/xul/test/test_bug757137.xul
rename : content/xul/content/test/test_bug775972.xul => dom/xul/test/test_bug775972.xul
rename : content/xul/content/test/test_import_xul_to_content.xul => dom/xul/test/test_import_xul_to_content.xul
rename : content/xul/document/test/window_bug583948.xul => dom/xul/test/window_bug583948.xul
rename : content/xul/document/test/window_bug757137.xul => dom/xul/test/window_bug757137.xul
2014-08-06 06:20:00 -07:00
Daniel Holbert 5b70a34c0a Bug 1049052: Use the style context on the root element's primary frame (if it exists) to resolve rem units, instead of re-resolving style. r=dbaron 2014-08-05 22:35:33 -07:00
Olli Pettay 87b818700b Bug 1026164, improve focus handling in shadow dom, r=wchen
--HG--
extra : rebase_source : 026b9ee49cdce82a703700593d7a1f0e5d27969f
2014-08-06 02:23:02 +03:00
Ting-Yu Lin b14245cedc Bug 1016184 - Part 3h: Fix horizontal scroll bar appears. r=roc
The touch caret frame is initialized at (0, 0). When <html> or <body>
has dir="rtl", "margin-left: -15px" (in ua.css) makes the horizontal
scroll bar appear even if the touch caret is invisible.

To compensate this, make width, height, and margin be 0px when the touch
caret is invisible.
2014-07-28 21:40:00 +02:00
L. David Baron 9c23ec99b9 Bug 996796 patch 20 - Make restyling exact - Avoid rerunning selector matching on everything when the basis of rem units changes. r=heycam 2014-08-03 13:11:55 -07:00
L. David Baron a39da5881c Back out bug 996796 patch 18 through patch 25 (changesets fbe97c2db729 through 9719c08c3144) to fix 50%-of-the-time Android 4.0 debug orange from single assertion ("Why did this not get handled while processing mRestyleRoots?", layout/base/RestyleTracker.cpp, line 87) in gfx/tests/crashtests/815489.html . 2014-08-03 01:22:07 -07:00
L. David Baron 8cae71e7f0 Bug 1045161 patch 2 - Remove write-only member variables of nsStyleTable. r=bzbarsky 2014-08-02 19:37:49 -07:00
L. David Baron 0d56159446 Bug 996796 patch 25 - Remove the old (now-unused) miniflush code (preserving one of the header comments). r=heycam 2014-08-02 19:37:49 -07:00
L. David Baron 3fc788efdb Bug 996796 patch 24 - Use a RestyleTracker for the coalescing in the animation-only style flush (miniflush). r=heycam
This changes the coalescing behavior during the animation-only style
flush by doing tree-based coalescing between the style updates required
by animations and those required by transitions, rather than doing
animations and transitions separately.

Note that both the old and the new code update all
animating/transitioning styles rather than only the throttled styles,
though we should fix that eventually as noted in the FIXME comment in
the code (but only for the existing caller, and not for the new one to
be introduced in bug 960465).

Note that this depends for its correctness on the previous patches to
make the restyling process exact.

The test changes are because the effects of bug 1031688 are changed by
the change in coalescing.  In the old code, we updated transition styles
before animation styles; in the new code we do a single pass over the
tree, which for the relevant test means updating animations on the
parent before transitions on the child, which changes the effects of the
bug.
2014-08-02 19:37:49 -07:00
L. David Baron 986f645557 Bug 996796 patch 23 - Make transition manager ignore StyleContextChanged notifications during an animation-only style update. r=heycam
This will be necessary when we use the restyle tracker for the
animation-only style flush.
2014-08-02 19:37:48 -07:00
L. David Baron 9babce67c7 Bug 996796 patch 20 - Make restyling exact - Avoid rerunning selector matching on everything when the basis of rem units changes. r=heycam 2014-08-02 19:37:47 -07:00
L. David Baron 242b2eae80 Bug 996796 patch 17 - Add comment about how RuleNodeWithReplacement should interact with nsTransitionManager and nsAnimationManager. r=heycam 2014-08-02 19:37:46 -07:00
L. David Baron a313113d7a Bug 996796 patch 16 - Add comment about potential performance impromevent to RuleNodeWithReplacement. r=heycam 2014-08-02 19:37:46 -07:00
L. David Baron e4c8b20f6f Bug 996796 patch 15 - Copy the eSkipParentDisplayBasedStyleFixup bit from ReparentStyleContext as well. r=heycam 2014-08-02 19:37:46 -07:00
L. David Baron b522eb1aa3 Bug 996796 patch 14 - Fix the aElementForAnimation passed from ResolveStyleWithReplacement. r=heycam 2014-08-02 19:37:45 -07:00
L. David Baron 8c67fdad83 Bug 996796 patch 13 - Fix the pseudo element information created by ResolveStyleWithReplacement. r=heycam
Note that we're not yet using this code for style contexts that have
pseudo-elements, since we don't run transitions or animations on
pseudo-elements on the compositor thread.  But bug 960465 will (with
some more work) start doing so.
2014-08-02 19:37:45 -07:00
L. David Baron a5f4dcf547 Bug 996796 patch 12 - Fix the visited rule node handling in ResolveStyleWithReplacement. r=heycam
The added test passes locally on Linux with OMT compositing and OMT
animations enabled.  However, it also passes without the patch because
the calls to FlushAnimations and FlushTransitions from
PresShell::FlushPendingNotifications cover up the damage done by bugs in
the animation-only style flush.

Unfortunately due to lack of global history on B2G and not running OMT
animations tests on any other platforms, the new test won't actually run
in automation right now.
2014-08-02 19:37:45 -07:00
L. David Baron 65f9ff29a5 Bug 996796 patch 11 - Fix the visited flag handling in ResolveStyleWithReplacement. r=heycam
This does the same thing as ReparentStyleContext (which thanks to the
patch to bug 1031149 deals with aNewParentStyleContext being null).
2014-08-02 19:37:44 -07:00
L. David Baron aa56e78e07 Bug 996796 patch 10 - Separate the rule node replacement code from the style context handling so that we can make visited handling correct. r=heycam 2014-08-02 19:37:44 -07:00
L. David Baron 807e67eeb1 Bug 996796 patch 9 - Make nsStyleSet::ResolveStyleWithReplacement handle changing between having and not having animation or transition rules, make it set IsImportantRule on rule nodes correctly, and merge the bogus ResolveStyleForRules into it. r=heycam
ResolveStyleForRules had various problems:  it failed to set importance
correctly and really only handled replacing a path in the rule tree
since it didn't handle creating important rules.  (Possibly more.)
2014-08-02 19:37:44 -07:00
L. David Baron 7e242b4acd Bug 996796 patch 8 - Pass the replacements through to ResolveStyleWithReplacement. r=heycam
This means ResolveStyleWithReplacement will replace only the rules in
the nsRestyleHint rather than always replacing both the animations rule
and the transitions rule.  (This will become even more useful later when
we add the ability to replace the style attribute rule.)
2014-08-02 19:37:44 -07:00
L. David Baron 29e1f8c013 Bug 996796 patch 5 - Move the guts of UpdateThrottledStyle into nsStyleSet, where it can be reused. r=heycam 2014-08-02 19:37:43 -07:00
L. David Baron f402ea6beb Bug 1031149 - Consistently pass correct aRelevantLinkVisited to nsStyleContext::FindChildWithRules. r=heycam
I believe this will fix some cache misses in the FindChildWithRules
lookup when restyling.  I don't think it will fix any correctness bugs
because the RelevantLinkVisited() bit will always end up set to true
anyway as the non-link descendant of a visited link style context, and
link descendants shouldn't be able to share styles with non-link
descendants due to matching rules in the UA style sheet.
2014-08-02 19:37:42 -07:00
Daniel Holbert 3c8c24351c Bug 1039826: Make changes to 'order' property trigger a repaint (even if reflow doesn't change position). r=dbaron 2014-08-01 11:13:28 -07:00
Ryan VanderMeulen 908eceaa30 Backed out 9 changesets (bug 1016184) for frequent OSX Gip timeouts.
Backed out changeset 0893f2ef4b9a (bug 1016184)
Backed out changeset 93587ce1162b (bug 1016184)
Backed out changeset a52c9d674927 (bug 1016184)
Backed out changeset ca2fd0f41a12 (bug 1016184)
Backed out changeset 84dacf014e39 (bug 1016184)
Backed out changeset 16854e321f23 (bug 1016184)
Backed out changeset 8acd5e707c83 (bug 1016184)
Backed out changeset d0513eae0c97 (bug 1016184)
Backed out changeset 0d03cd217c64 (bug 1016184)
2014-07-31 13:29:30 -04:00
Jeff Muizelaar cc643f47c6 Bug 1045251. Use the concrete type imgRequestProxy in nsStyleImage. r=seth
--HG--
extra : rebase_source : de67e22ac03d213ee54ab63693c932b4abf12ce9
2014-07-29 10:56:39 -04:00
Ting-Yu Lin 401d4812df Bug 1016184 - part 3h - Fix horizontal scroll bar appears. r=roc
The touch caret frame is initialized at (0, 0). When <html> or <body>
has dir="rtl", "margin-left: -15px" (in ua.css) makes the horizontal
scroll bar appear even if the touch caret is invisible.

To compensate this, make width, height, and margin be 0px when the touch
caret is invisible.
2014-07-28 21:40:00 +02:00
Jonathan Kew 2f49b70d25 bug 1028136 - Remove dangerous public destructor of FontFamilyList. r=jdaggett 2014-07-30 09:15:00 +01:00
Mike Hommey 5f6ba110e6 Bug 1043802 - Remove TOOLS_DIRS and TEST_TOOLS_DIRS. r=gps 2014-07-29 08:55:55 +09:00
Susanna Bowen 3f093640d6 Bug 1043706 - Wrap ruby-specific rules in ua.css in a "@supports" clause (to avoid spamming parse errors when ruby is disabled). r=dholbert 2014-07-25 15:53:00 +02:00
Cameron McCormack ad622ef4c6 Bug 1043461 - Make test_bug657143.html resilient to custom properties from the UA style sheet. r=dholbert 2014-07-26 11:01:45 +10:00
Alexandros Chronopoulos 29aaf180d6 Bug 751939 - make url( followed by EOF valid. r=dbaron 2014-07-23 00:14:16 +03:00
Cameron McCormack f46facbdcc Bug 1043713 - Expose custom property names on computed style objects with their "--" prefix. r=bzbarsky 2014-07-25 16:14:33 +10:00
L. David Baron 364d06998b Bug 996796 patch 3 - Move the knowledge of when we last updated main-thread-suppressed animation styles into the restyle manager rather than have two separate but always equal timestamps for animations and transitions. r=birtles 2014-07-24 21:35:34 -07:00
L. David Baron b7a521a812 Bug 996796 patch 1 - Perform a miniflush on both animations and transitions before processing restyles. r=birtles
This affects the correctness of transitions that take over from a
running animation.  (In the current code this can happen on a single
element; once the cascading changes in bug 960465 are complete it can
only happen via inheritance.)

This version of the patch changes to do the test using opacity rather
than transform, since testing using transforms encountered issues
related to bug 1031688:  the presence of phantom transitions due to the
interaction of the computed value rules for transforms distinguishing
between values that the interpolation rules consider identical.  (These
problems only appear after patch 24 in this bug changes the coalescing
order between a parent with animations and a child with transitions so
that the parent is handled before the child, instead of transitions
being handled before animations.)

The final two added tests fail without the patch and pass with the patch.
(With the opacity version, the third to last test also fails without the
patch, probably due to the value not having yet been sent to the layer.
This was not an issue pre-patch with the original test using transform,
though.  I haven't tested that this happened with patch 0, though, so it
might have been the issue patch 0 fixes.)
2014-07-24 21:35:33 -07:00
L. David Baron f4ad325e9a Bug 996796 patch 0 - Fix test_animations_omta_start.html so that additional tests will involve onscreen layers. r=birtles
This removes each test element when we're done with it so that each
successive test element isn't 100px lower.  This is required to keep the
third test element (added in the next patch) onscreen when running tests
on the B2G emulator (other than when running a single test at a time).
This, in turn, is required to get animations in that test properly
shipped to the compositor thread, which is required for the test to
pass.
2014-07-24 21:35:33 -07:00
Cameron McCormack c97ec4f1ac Bug 1043181 - Copy mValues and mGeneration in the nsCSSCounterStyleRule copy constructor. r=dbaron 2014-07-25 11:50:24 +10:00
L. David Baron d81472cee7 Bug 1041075 - Request longer timeout for test_value_storage.html. r=dholbert
I think this has become needed due to changes in the configuration of
the VMs on which we're running tests.

--HG--
extra : transplant_source : %83%CE%27M%CF2%0E%A9%0B%B4%9E%BC%AB%E45g%C9J%D4%17
2014-07-24 15:02:21 -07:00
William Chen fc2b3b5598 Bug 1041880 - Use GetParentElementCrossingShadowRoot() when initializing style scopes. r=heycam 2014-07-24 01:12:38 -07:00
Brian Birtles fb9a1a8fb3 Bug 1002332 - Make AnimationTimeline record the last refresh time and use that when there is no refresh driver; r=bz
A document that belongs to an iframe that is display:none as no associated pres
context from which to get a refresh driver. However, in this case
document.timeline.currentTime should still never go backwards (since document
timelines are supposed to be monotonically increasing).

This patch makes AnimationTimeline record the last value returned for the
current time so that if the document becomes display:none we can still return
the most recently used time.
2014-07-24 13:37:38 +09:00
Alexandre Poirot 7ea4dd517f Bug 1027242 - Blacklist mulet's failing tests + expose 'mulet' to ini files; fix previous bustage on a CLOSED TREE, r=ahal 2014-07-02 15:40:56 -07:00
Carsten "Tomcat" Book acae829094 merge mozilla-inbound to mozilla-central a=merge 2014-07-23 15:50:58 +02:00
Susanna Bowen 2b29530598 Bug 1021952 - Ensure that direct children of ruby elements are inline. r=bz 2014-07-22 19:08:13 -07:00
Susanna Bowen bf06af5d74 Bug 1021952 - Generate anonymous boxes to preserve proper ruby structure r=bz 2014-07-22 19:08:08 -07:00
Susanna Bowen a3e95afeef Bug 1021952 - Add ruby display values and ruby frames. r=dholbert,bz 2014-07-22 19:08:01 -07:00
Cameron McCormack f7f51e7111 Bug 1031206 - Part 2: Split out creation of font faces in nsUserFontSet. r=jdaggett 2014-07-23 15:05:50 +10:00
Cameron McCormack d134a8e4ee Bug 1031206 - Part 1: Split out creation and addition of font faces in gfxUserFontSet. r=jdaggett 2014-07-23 15:05:50 +10:00
Brian Birtles b846442afc Bug 1037316 part 2 - When updating animations, match existing animations one-by-one starting from the beginning of each list; r=dbaron
This patch changes the order in which we look for matches when updating existing
animations. Previously we would iterate through new animations in a forwards
direction but match old animations by going through the list of animations
backwards.

This patch makes us iterate through both lists in a backwards direction. That
means that if we have:

  animation: anim 100s

and later we make it

  animation: anim 100s, anim 100s

Then the new animation will be added to the *start* of the list, i.e. prepended,
and the resulting animation will not restart.
2014-07-23 10:51:12 +09:00
Brian Birtles 8e8054d839 Bug 1037316 part 1 - Return the same object when updating animations; r=dbaron
Previously when updating animations we'd generate a new list of animation
objects then try to match up animations from the existing list and copy across
state such as start times and notification flags. However, this means that from
the API we end up returning different objects.

This patch makes us maintain the same object identity when updating an existing
animation. It does this by looking for matching animations in both lists. If it
finds a match it copies the necessary information from the *new* animation to
the *existing* animation (but preserving the start time, last notification
etc.). Then, finally, it puts the *existing* animation in the list of *new*
animations and removes the corresponding *new* animation. The existing
animation is also removed from the list of existing animations so that it only
matches once.

The method used for matching is probably not intuitive but this is addressed in
a subsequent patch in this series.
2014-07-23 10:51:12 +09:00
Daniel Holbert c8994e5a15 Bug 984711 part 9: Rename file_flexbox_min_size_auto.html to test_flexbox_min_size_auto.html, now that its obsolete wrapper is gone. (no review)
--HG--
rename : layout/style/test/file_flexbox_min_size_auto.html => layout/style/test/test_flexbox_min_size_auto.html
2014-07-22 08:24:36 -07:00
Daniel Holbert 8ef16d75fb Bug 984711 part 8: Remove pref-setting mochitest wrapper for min-[size]:auto mochitest. (no review; tweaking existing test) 2014-07-22 08:24:35 -07:00
Daniel Holbert f9efd30d2e Bug 984711 part 7: Add back mochitest for min-[size]:auto. (no review; just an unbitrotted backout)
This reverts changeset edd98255e81d from bug 848539.
2014-07-22 08:24:35 -07:00
Daniel Holbert eaec3c09b3 Bug 984711 part 6: Add back special handling for min-width:auto in nsHTMLReflowState & getComputedStyle. (no review; just an unbitrotted backout)
This reverts changeset 1eae876d6c3a from bug 848539.
2014-07-22 08:24:35 -07:00
Daniel Holbert 5e5bbcdeba Bug 984711 part 4: Add back handling for nsStylePosition::mMinHeight having "eStyleUnit_Auto" in style system & general layout code. (no review; just an unbitrotted backout)
This reverts changeset 5db313632268 from bug 848539.
2014-07-22 08:24:35 -07:00
Daniel Holbert 54db21c8c7 Bug 984711 part 3: Add back handling for nsStylePosition::mMinWidth having "eStyleUnit_Auto" in style system & general layout code. (no review; just an unbitrotted backout)
This reverts changeset f8b5090d02e5 from bug 848539.
2014-07-22 08:24:34 -07:00
Daniel Holbert c254eb4d6f Bug 984711 part 2: Add back min-width:auto & min-height:auto in the parser and as default value (just computing to '0' for now). (no review; just an unbitrotted backout)
This reverts changeset e7a9e30409eb from bug 848539.
2014-07-22 08:24:34 -07:00
Jonathan Griffin 1c5d8636ac Backed out changeset 64586374a208 on a CLOSED TREE 2014-07-22 18:29:57 -07:00
Susanna Bowen 088ac60470 Bug 1038928 - Mochitests for CSS 2.1 9.7. r=bz 2014-07-21 18:28:04 -07:00
Geoff Brown 129db347c4 Bug 1041017 - Skip test_animations_omta_start.html on b2g desktop; r=trivial 2014-07-21 16:10:53 -06:00
Brian Grinstead 4d00eac785 Bug 1037519 - Allow matching pseudo-elements in inIDOMUtils.selectorMatchesElement. r=bz 2014-07-18 14:30:00 -04:00
Alexandre Poirot 98afd25e0d Bug 1027242 - Blacklist mulet's failing tests + expose 'mulet' to ini files; fix previous bustage on a CLOSED TREE, r=ahal 2014-07-02 15:40:56 -07:00
Jonathan Griffin 38f79ff899 Backout 4f6d9db92389 for bustage on a CLOSED TREE 2014-07-22 17:55:50 -07:00
Mike Hommey bc5d6801bb Bug 1041860 - Avoid setting FINAL_LIBRARY to libraries that further use a FINAL_LIBRARY. r=mshal 2014-07-23 08:37:51 +09:00
Alexandre Poirot 37506aa45c Bug 1027242 - Blacklist mulet's failing tests + expose 'mulet' to ini files. r=ahal 2014-07-02 15:40:56 -07:00
L. David Baron 759eebe6d2 Bug 1040386: Fix hopefully-harmless CSS syntax error in isOMTAWorking(). r=birtles
I noticed this in the logs of a B2G emulator mochitest run.
2014-07-18 21:22:20 -07:00
L. David Baron 374118e754 Bug 1041060: Use AllocateByObjectID/FreeByObjectID for nsInheritedStyleData and nsResetStyleData. r=heycam
This is similar to bug 1038488, which did the same for style structs.
This means the entire path from frame to style struct should be
allocated using frame IDs or object IDs.
2014-07-18 21:22:20 -07:00
Michael Ratcliffe 5191e86267 Bug 1035106 - Add new APIs to DOMUtils: colorToRGBA, isValidCSSColor & cssPropertyIsValid r=bz 2014-07-17 15:08:07 +01:00
Ahmed Kachkach 4b03d2c025 Bug 886570 - Initial integration of structured logs in mochitest; r=ahal,Ms2ger 2014-07-17 09:02:00 +02:00
Brian Birtles ef118ad7fc Bug 1038032 part 2 - Add test case for overflowing TimeDuration; r=dholbert 2014-07-18 10:31:18 +09:00
Brian Birtles 42b7639448 Bug 1038032 part 1 - Add temporary workaround to avoid overflow when calculating the active end of an animation; r=dholbert 2014-07-18 10:31:17 +09:00
Chris Lord e999475d51 Bug 1038781 - Don't reflow/repaint frame when clip changes. r=roc
If an element's existing clip changes, just update overflow areas and let
DLBI handle invalidation.
2014-07-16 13:28:50 +02:00
Brian Birtles f06a4c0c17 Bug 1037314 - Include animation-play-state in animation shorthand; r=dbaron
This patch is basically a reversal of attachment 530792 from bug 654890.
2014-07-17 10:04:56 +09:00
L. David Baron 6b85a58773 Bug 1038488 patch 3 - Use AllocateByObjectID/FreeByObjectID for style structs. r=heycam 2014-07-15 22:27:13 -07:00
L. David Baron a084fec891 Bug 1038488 patch 2 - Remove memset from the operator new of the 4 style structs that have it. r=heycam
This also moves those 4 operator new methods to be inline to match the
style of all of the others.

I audited that all the members of these structs are initialized by all
their constructors (see patch 1).
2014-07-15 22:27:12 -07:00
L. David Baron 8e7821b091 Bug 1038488 patch 1 - Explicitly initialize nsStyleMargin::mCachedMargin and nsStylePadding::mCachedPadding so that it is clear all members of nsStyleFont, nsStyleMargin, nsStylePadding, and nsStyleBorder are explicitly initialized. r=heycam
While nsMargin does 0-initialize, it's not necessarily obvious that it
does, and I think it's worth making explicit.
2014-07-15 22:27:12 -07:00
L. David Baron 76273a1316 Bug 1030604 - Use nsChangeHint_UpdateOverflow for clip-path and mask changes so we update the PreEffectsBBoxProperty and run the effect on the correct area. r=roc
The testcase is a slight simplification of dholbert's testcase 2
(attachment 8456312) in the bug.  It fails in the reftest harness
without the patch, and passes in the reftest harness with the patch.
2014-07-15 22:27:12 -07:00
Cameron McCormack fbd6b8f0f4 Bug 1039151 - Replace space-wasting use of DebugOnly<> in CSSVariableResolver with #ifdef DEBUG. r=dbaron 2014-07-16 15:24:04 +10:00
Brian Birtles 59bf2039e1 Bug 1036300 - Expose AnimationPlayer.timeline; r=bz 2014-07-16 09:02:33 +09:00
Brian Birtles a7a1177af7 Bug 1036287 part 6 - Add a GetComputedTiming shortcut that uses the current animation timeline time; r=dholbert
This patch introduces a method GetComputedTiming that calls GetComputedTimingAt
supplying the current time of the animation's timeline.

We still keep the GetComputedTimingAt static method since it is used for
off-main thread animation. Furthermore, we keep the second argument to
GetComputedTiming--the animation's timing properties--since on some occasions we
want to override those properties (ElementPropertyTransition::ValuePortionFor
does this). We could also add another overload that also supplies the
animation's timing properties but that can happen as a separate step.
2014-07-16 09:02:33 +09:00
Brian Birtles 7aff661646 Bug 1036287 part 5 - Drop aTime param from IsRunning(At) and IsCurrent(At), since they now use the current timeline time; r=dholbert 2014-07-16 09:02:33 +09:00
Brian Birtles f7c2a452ed Bug 1036287 part 4 - Make GetLocalTime(At) get the current time automatically from the timeline; r=dholbert
This patch changes ElementAnimation::GetLocalTimeAt so that instead of taking
the current time as input, it uses the animation's mTimeline member to look up
the current time of the associated timeline. As a result of this, it is possible
to remove a few instances of querying the refresh driver for the current time.
Further instances are removed in subsequent patches.

Furthermore, in order to keep the use of time sources consistent, the mStartTime
of new transitions and animations is initialized with the current time from the
animation's timeline rather than with the latest refresh driver tick.
Since this time could, in future, be null, GetLocalTime(At) is updated to check
for a null start time.

GetLocalTimeAt is also renamed to GetLocalTime in the process.
2014-07-16 09:02:32 +09:00
Brian Birtles 8a61f8ccfa Bug 1036287 part 3 - Make GetLocalTimeAt return a nullable time duration; r=dholbert
Once we support arbitrary timelines which can return null current time values,
the local time of an animation can also become null so this patch updates
ElementAnimation::GetLocalTimeAt to return a Nullable<TimeDuration>.
Doing this also allows us to pass the result of GetLocalTimeAt directly to
GetComputedTimingAt.
2014-07-16 09:02:32 +09:00
Brian Birtles a3a8900375 Bug 1036287 part 2 - Make GetComputedTimingAt take a nullable local time; r=dholbert
As part of supporting arbitrary timelines, we'd like to pass null times to the
function that calculates computed timing. Incidentally, this also provides
a means for evaluating calculating timing parameters that are independent of the
current time (currently only the active duration) without requiring a valid
time.

This patch updates the signature of ElementAnimation::GetComputedTimingAt to
take a nullable time duration.

We use the Nullable wrapper to represent null TimeDurations since, unlike,
TimeStamp, TimeDuration does not include a null state.
2014-07-16 09:02:32 +09:00
Brian Birtles 34ac24b42a Bug 1036287 part 1 - Add a null animation phase; r=dholbert
In order to support arbitrary timelines which may provide a "null" current time,
we need a suitable value to return from GetComputedTimingAt for the animation's
phase when the timeline time is null.

This patch introduces a null animation phase for this purpose.
2014-07-16 09:02:32 +09:00
Brian Birtles 4a5b988a87 Bug 1032573 part 5 - Add GetAnimationPlayers to Element; r=bz
This patch adds the WebIDL definitions and implementation of
getAnimationPlayers on Element.

It does not include the full definition of AnimationPlayer but only readonly
versions of the currentTime and startTime attributes since these are easy
to implement and enable identifying the different animations that are returned
for the sake of testing.

Web Animations defines getAnimationPlayers as only returning the animations that
are either running or will run in the future (known as "current" animations).
This will likely change since it seems desirable to be able query animations
that have finished but are applying a forwards fill. For now, however, this
patch makes us only return animations that have not finished.

This patch also removes an assertion in ElementAnimation::GetLocalTime that
would fail if called on a finished transition. This assertion is no longer
necessary since an earlier patch in this series removed the overloading of
the animation start time that meant calling this on a finished transition
was unsafe. Furthermore, this assertion, if it were not removed, would fail
if script holds onto a transition and queries its start time after it
completed.
2014-07-16 09:02:31 +09:00
Brian Birtles 9454e09015 Bug 1032573 part 2 - Add a timeline member to ElementAnimations; r=dbaron
When we expose ElementAnimation objects to script they need to have a parent
object so they can be associated with a Window.

This patch adds a pointer from an ElementAnimation to its AnimationTimeline.
2014-07-16 09:02:30 +09:00
Brian Birtles 881f90e9a2 Bug 1032573 part 1 - Don't overload start time for marking finished transitions; r=dbaron
When transitions finish, we keep them around for one additional throttle-able
tick to provide correct behavior for subsequent transitions that may be
triggered. Prior to this patch we did this by overloading the start time of the
animation and setting it to null in this case.

However, if we begin returning ElementAnimation objects to script, script can
hold on to those objects and query their start time even after they are
finished. Therefore we need another means of marking finished transitions that
doesn't clobber the start time field.

This patch introduces a new boolean member for marking such transitions.

While we're touching IsFinishedTransition we also take the chance to tidy up one
of the call sites, namely IsCurrentAt, to make the logic a little easier to
follow.
2014-07-16 09:02:29 +09:00
Bobby Holley cdd8e663e7 Bug 987678 - Stop doing all the crazy stuff in xbl-marquee. r=bz 2014-07-15 12:23:43 -07:00
Ting-Yu Lin 3b1816e239 Bug 1021527 - Fix blurry carets by using svg image. r=roc
* Replace png images with svg images for touch caret and selection
  carets.
* Fix touch caret is enlarged on high resolution device due to
  background-size was not set.
2014-07-14 23:08:00 +02:00
Gabriel Luong 9d0c3f489e Bug 591303 - Part 3: Set line and column number for all rules in nsCSSParser. r=bz 2014-07-14 15:57:54 -07:00
Birunthan Mohanathas a7d5f55774 Bug 591303 - Part 2: Add getCSSRule function to nsIDOMCSSRule. r=bz 2014-07-14 15:57:46 -07:00
Gabriel Luong c0ea3ed948 Bug 591303 - Part 1: Move mLineNumber, mColumnNumber, and mWasMatched from StyleRule to Rule. r=bz
Also, pass the line/column number through the constructor rather than through a separate function.
2014-07-14 15:57:02 -07:00
Mats Palmgren d4a41f8618 Bug 637242, patch 3 of 3: crashtest. r=dbaron 2014-07-13 13:01:44 +00:00
Mats Palmgren 6b3fa1ca1c Bug 637242, patch 2 of 3: Make nsRuleNode::Sweep nonrecursive to avoid stack exhaustion crashes. r=dbaron 2014-07-13 13:01:44 +00:00
Mats Palmgren 270cd1ba97 Bug 637242, patch 1 of 3: Fix ref-counting bug. r=dbaron 2014-07-13 13:01:43 +00:00
Carsten "Tomcat" Book ce57787693 Backed out changeset cf85693280c7 (bug 886570) frequent mochitest-3 errors on windows 2014-07-11 14:15:29 +02:00
Ahmed Kachkach 50db9012f6 Bug 886570 - Initial integration of structured logs in mochitest. r=ahal,Ms2ger 2014-07-10 13:33:00 +02:00
Boris Zbarsky 11bc3578c0 Bug 965413 part 11. Use a LoadInfo as needed for loading stylesheets. r=smaug 2014-07-10 02:56:38 -04:00
Cameron McCormack e369e9f112 Bug 1031187 - Part 2: Use family name from proxy rather than gfxMixedFontFamily when logging. r=jdaggett 2014-07-09 17:08:55 +10:00
Cameron McCormack 66e53076a0 Bug 1031199 - Followup to fix style constant typo. 2014-07-09 17:08:45 +10:00
Tom Schuster 4794be7af6 Bug 1024707 - Test. r=bz 2014-07-09 11:43:33 +02:00
Carsten "Tomcat" Book e1a52fe23e Backed out changeset 37683ae1953f (bug 1031199) for crashtest bustage on Linux Opt on a CLOSED TREE 2014-07-09 13:44:42 +02:00
Carsten "Tomcat" Book e338c2088b Backed out changeset dc4ff3a5afd1 (bug 1031187) 2014-07-09 13:44:11 +02:00
Carsten "Tomcat" Book 09a3eb0e72 Backed out changeset f213b3135312 (bug 1024707) 2014-07-09 13:18:47 +02:00
Cameron McCormack a5140bd518 Bug 1031187 - Part 2: Use family name from proxy rather than gfxMixedFontFamily when logging. r=jdaggett 2014-07-09 21:04:14 +10:00
Cameron McCormack 352c25c3b0 Bug 1031199 - Followup to fix style constant typo. 2014-07-09 21:03:19 +10:00
Tom Schuster 5220ddff89 Bug 1024707 - Test. r=bz 2014-07-09 11:43:33 +02:00
Brian Birtles d8a37d7c4d Bug 1033881 part 1 - Don't generate animations when the animation-name doesn't match; r=dbaron
When animation-name does not match a keyframes rule, we should not dispatch
animation events as per:

  "Any animation for which both a valid keyframe rule and a non-zero duration
  are defined will run and generate events; this includes animations with empty
  keyframe rules."
  http://dev.w3.org/csswg/css-animations/#events

Since bug 1004377, however, we started dispatching events in this case because
we no longer ignore animations whose set of keyframes is empty.

This patch checks for a matching keyframes rule in BuildAnimations and if one is
not found, no corresponding animation is generated.
2014-07-09 09:13:33 +09:00
Benoit Jacob 487ba5e6bf Bug 1035394 - Fix dangerous public destructors in layout - r=dbaron 2014-07-08 17:23:18 -04:00
Cameron McCormack c3fc13b59f Bug 1034803 - Treat local(serif) as an invalid value in descriptor_database.js. r=dbaron 2014-07-08 10:17:19 +10:00
Cameron McCormack ecfcc4d944 Bug 1031153 - Move unicode-range descriptor serialization to nsStyleUtil. r=dbaron 2014-07-04 11:19:33 +10:00
Robert Longson f80c37ea97 Bug 556441 - Interpolation fails for stroke-width and stroke-dashoffset when animating between unitless values & values with units. r=dbaron 2014-07-03 20:05:43 +01:00
Brian Birtles ea77abec71 Bug 1010067 - Whitespace fix to nsTransitionManager::FlushTransitions. No review.
This change was suggested in bug 1010067 comment 22 but somehow ended up in the
wrong patch when pushing.
2014-07-03 09:04:35 +09:00
Brian Birtles a71e7fd445 Bug 1031319 part 2 - Add tests for animation-name:none handling; r=dbaron 2014-07-03 09:04:31 +09:00