gecko-dev/layout/style
Emilio Cobos Álvarez 9ed36d7ba6 Bug 1506547 - Align user-select behavior more with other UAs. r=mats
There's a few subtle behavior changes here, which I'll try to break down in the
commit message.

The biggest one is the EditableDescendantCount stuff going away. This
was added in bug 1181130, to prevent clicking on the non-editable div from
selecting the editable div inside. This is problematic for multiple reasons:

 * First, I don't think non-editable regions of an editable element should
   be user-select: all.

 * Second, it just doesn't work in Shadow DOM (the editable descendant count is
   not kept up-to-date when not in the uncomposed doc), so nested
   contenteditables behave differently inside vs. outside a Shadow Tree.

 * Third, I think it's user hostile to just entirely disable selection if you
   have a contenteditable descendant as a child of a user-select: all thing.

   WebKit behaves like this patch in the following test-case (though not Blink):

     https://crisal.io/tmp/user-select-all-contenteditable-descendant.html

   Edge doesn't seem to support user-select: all at all (no pun intended).

   But we don't allow to select anything at all which looks wrong.

 * Fourth, it's not tested at all (which explains how we broke it in Shadow DOM
   and not even notice...).

In any case I've verified that this doesn't regress the editor from that bug. If
this regresses anything we can fix it as outlined in the first bullet point
above, which should also make us more compatible with other UAs in that
test-case.

The other change is `all` not overriding everything else. So, something like:

  <div style="-webkit-user-select: all">All <div style="-webkit-user-select: none">None</div></div>

Totally ignores the -webkit-user-select: none declaration in Firefox before this
change. This doesn't match any other UA nor the spec, and this patch aligns us
with WebKit / Blink.

This in turn makes us not need -moz-text anymore, whose only purpose was to
avoid this.

This also fixes a variety of bugs uncovered by the previous changes, like the
SetIgnoreUserModify(false) call in editor being completely useless, since
presShell->SetCaretEnabled ended in nsCaret::SetVisible, which overrode it.

This in turn uncovered even more bugs, from bugs in the caret painting code,
like not checking -moz-user-modify on the right frame if you're the last frame
of a line, to even funnier bits where before this patch you show the caret but
can't write at all...

In any case, the new setup I came up with is that when you're editing (the
selection is focused on an editable node) moving the caret forces it to end up
in an editable node, thus jumping over non-editable ones.

This has the nice effect of not completely disabling selection of
-moz-user-select: all elements that have editable descendants (which was a very
ad-hoc hack for bug 1181130, and somewhat broken per the above), and also
not needing the -moz-user-select: all for non-editable bits in contenteditable.css
at all.

This also fixes issues with br-skipping like not being able to insert content in
the following test-case:

  <div contenteditable="true"><span contenteditable="false">xyz </span><br>editable</div>

If you start moving to the left from the second line, for example.

I think this yields way better behavior in all the relevant test-cases from bug
1181130 / bug 1109968 / bug 1132768, shouldn't cause any regression, and the
complexity is significantly reduced in some places.

There's still some other broken bits that this patch doesn't fix, but I'll file
follow-ups for those.

Differential Revision: https://phabricator.services.mozilla.com/D12687

--HG--
extra : moz-landing-system : lando
2018-11-26 09:21:37 +00:00
..
crashtests Bug 1503019 - Part I, Remove dom.webcomponents.shadowdom.enabled r=smaug 2018-11-15 06:51:07 +00:00
res Bug 1508018 - Use 'initial' instead of literal initial values in <textarea> rule. r=dholbert 2018-11-21 22:05:20 +01:00
test Bug 1507305 - Use Servo to serialize most of the already-exposed shorthands. r=heycam 2018-11-15 04:10:08 +00:00
tools Bug 1471114 part 7 - Scripts used to generated the previous patches. r=emilio 2018-06-27 15:34:29 +10:00
xbl-marquee Bug 1425874 - Implement HTMLMarqueeElement r=bzbarsky 2018-11-14 05:29:11 +00:00
AnimationCollection.cpp Bug 1447827: Remove ServoRestyleManager. r=xidorn 2018-04-07 15:50:06 +02:00
AnimationCollection.h Bug 1320608 - Add forward declaration for nsIFrame in AnimationCollection.h. r=birtles 2018-05-09 05:53:46 +09:00
AnimationCommon.h bug 1483963, cache the index of a child node when ordering animations for event dispatch, r=hiro,ehsan 2018-09-05 00:31:57 +03:00
BindingStyleRule.cpp Bug 1470325 - s/FooBinding/Foo_Binding/g - r=qdot 2018-06-26 17:05:01 -07:00
BindingStyleRule.h Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
BorrowedTypeList.h Bug 1505949 - layout/style/{BorrowedTypeList.h,ServoArcTypeList.h,ServoBoxedTypeList.h} content should remain on a single line r=heycam 2018-11-09 13:31:39 +00:00
BuiltinCounterStyleList.h
CSS.cpp Bug 1474513 - Simplify CSS::Supports. r=emilio 2018-07-10 15:51:38 +10:00
CSS.h Bug 1412346 part 5: (automated patch) Switch a bunch of C++ files in layout to use our standard mode lines. r=jfkthame 2017-10-27 10:33:53 -07:00
CSSCounterStyleRule.cpp Bug 1470325 - s/FooBinding/Foo_Binding/g - r=qdot 2018-06-26 17:05:01 -07:00
CSSCounterStyleRule.h Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSEnabledState.h
CSSFontFaceRule.cpp Bug 1480222 part 1: Add include for ServoBindings.h to some .cpp files in layout/style, to fix various non-unified build errors about undeclared identifier 'Servo_XYZ'. r=TYLin 2018-08-01 14:52:07 -07:00
CSSFontFaceRule.h Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSFontFeatureValuesRule.cpp Bug 1480222 part 1: Add include for ServoBindings.h to some .cpp files in layout/style, to fix various non-unified build errors about undeclared identifier 'Servo_XYZ'. r=TYLin 2018-08-01 14:52:07 -07:00
CSSFontFeatureValuesRule.h Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSImportRule.cpp Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSImportRule.h Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSKeyframeRule.cpp Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSKeyframeRule.h Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSKeyframesRule.cpp Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSKeyframesRule.h Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSMediaRule.cpp Bug 1480222 part 1: Add include for ServoBindings.h to some .cpp files in layout/style, to fix various non-unified build errors about undeclared identifier 'Servo_XYZ'. r=TYLin 2018-08-01 14:52:07 -07:00
CSSMediaRule.h Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSMozDocumentRule.cpp Bug 1480222 part 1: Add include for ServoBindings.h to some .cpp files in layout/style, to fix various non-unified build errors about undeclared identifier 'Servo_XYZ'. r=TYLin 2018-08-01 14:52:07 -07:00
CSSMozDocumentRule.h Bug 1475511: UrlMatchingFunction -> DocumentMatchingFunction. r=xidorn 2018-07-21 23:02:12 +02:00
CSSNamespaceRule.cpp Bug 1451289 - Part 1: Merge ServoNamespaceRule and css::CSSNamespaceRule r=emilio 2018-06-01 12:35:39 +02:00
CSSNamespaceRule.h Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSPageRule.cpp Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSPageRule.h Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSPropFlags.h Bug 1116638: Expose logical props in computed style. r=xidorn 2018-06-30 13:45:43 +00:00
CSSRuleList.cpp Bug 1470325 - s/FooBinding/Foo_Binding/g - r=qdot 2018-06-26 17:05:01 -07:00
CSSRuleList.h Bug 1436263 - Part 3: Remove `virtual` from final virtual function declarations. r=froydnj 2018-02-08 21:22:43 -08:00
CSSStyleRule.cpp Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSStyleRule.h Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSSupportsRule.cpp Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSSupportsRule.h Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
CSSValue.h Bug 1494622 - Simplify CSSValue and co a bit more. r=xidorn 2018-09-27 16:11:45 +02:00
CachedInheritingStyles.cpp Bug 1448728 part 1 - Make popular headers not include nsWindowSizes.h. r=njn 2018-03-28 10:44:49 +11:00
CachedInheritingStyles.h Bug 1447483: Merge nsStyleContext and ServoStyleContext, rename to ComputedStyle. r=jwatt on a CLOSED TREE 2018-03-22 20:06:24 +01:00
ComputedStyle.cpp Bug 1483090 - Rename StyleUserInterface to StyleUI. r=emilio 2018-08-14 08:37:37 +00:00
ComputedStyle.h Bug 1489529 - Update comments to no longer point to nsRuleNode. r=emilio 2018-09-12 17:37:37 +10:00
ComputedStyleInlines.h Bug 1464060: Unify DoGetStyle* implementations. r=xidorn 2018-05-28 10:40:32 +02:00
CounterStyleManager.cpp Bug 1449787 - Make static atom pointers `constexpr`. r=froydnj,emilio 2018-10-04 09:16:11 +10:00
CounterStyleManager.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
DeclarationBlock.cpp Bug 1466963: Inline DeclarationBlock's methods since they just forward to Servo. r=xidorn 2018-06-07 11:22:30 +02:00
DeclarationBlock.h Bug 1466963: Provide a before-mutation closure to C++. r=xidorn,smaug 2018-06-07 11:22:31 +02:00
DocumentMatchingFunction.h Bug 1475511: Add @-moz-document media-document(image|video|plugin). r=xidorn 2018-07-21 23:02:17 +02:00
DocumentStyleRootIterator.cpp
DocumentStyleRootIterator.h Bug 1437723: Preemptively fix unified bustage in layout/style by adding missing includes/namespaces/forward-decls. r=emilio 2018-02-12 16:53:44 -08:00
ErrorReporter.cpp Bug 1418874 part 4 - Remove nsCSSScanner. r=emilio 2018-06-14 20:13:44 -07:00
ErrorReporter.h Bug 1480222 part 4: Give css ErrorReporter.h an actual nsString.h include (not nsStringFwd), since it has actual nsString member-vars which need full definition. r=TYLin 2018-08-01 15:21:07 -07:00
FontFace.cpp Bug 1496486 - Remove nsCSSValue usage from font code. r=heycam 2018-10-09 19:07:41 +02:00
FontFace.h Bug 1496486 - Remove nsCSSValue usage from font code. r=heycam 2018-10-09 19:07:41 +02:00
FontFaceSet.cpp Bug 1506084 - Set TailForbidden on class of service for webfont loads. r=mayhemer 2018-11-19 19:03:23 +00:00
FontFaceSet.h Bug 1496486 - Remove nsCSSValue usage from font code. r=heycam 2018-10-09 19:07:41 +02:00
FontFaceSetIterator.cpp Bug 1470325 - s/FooBinding/Foo_Binding/g - r=qdot 2018-06-26 17:05:01 -07:00
FontFaceSetIterator.h Bug 1412346 part 5: (automated patch) Switch a bunch of C++ files in layout to use our standard mode lines. r=jfkthame 2017-10-27 10:33:53 -07:00
GeckoBindings.cpp Bug 1504034 - Part 3: Store the Rust QuotePair slice as the computed quotes value in Gecko style structs r=emilio 2018-11-06 23:03:24 +00:00
GeckoBindings.h Bug 1504034 - Part 3: Store the Rust QuotePair slice as the computed quotes value in Gecko style structs r=emilio 2018-11-06 23:03:24 +00:00
GenerateCSSPropertyID.py Bug 1454591 part 1 - Generate more structured data in ServoCSSPropList.py. r=heycam 2018-05-04 13:44:51 +10:00
GenerateCSSPropsGenerated.py Bug 1471114 part 1 - Move CSSPropFlags prefix generation into GenerateServoCSSPropList.py. r=emilio 2018-06-27 15:34:29 +10:00
GenerateCompositorAnimatableProperties.py Bug 1479173 - Add a static constexpr function returns an nsCSSPropertyIDSet being consist of CSS properties set can be run on the compositor. r=heycam,birtles 2018-11-06 21:00:38 +00:00
GenerateComputedDOMStyleGenerated.py Bug 1116638: Expose logical props in computed style. r=xidorn 2018-06-30 13:45:43 +00:00
GenerateServoCSSPropList.py Bug 1471114 part 2 - Generate ComputedStyleMap entry list from property data. r=emilio 2018-06-27 15:34:29 +10:00
GenerateServoStyleConsts.py Bug 1478813 - Auto-generate ServoStyleConsts. r=xidorn,ted 2018-08-17 19:48:23 +02:00
GroupRule.cpp Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
GroupRule.h Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
ImageDocument.css Bug 1428753: Ensure that vertical-overflowing images always show the zoom-out cursor. r=heycam 2018-04-12 20:48:02 +02:00
ImageLoader.cpp Bug 1428558 - Part 7. Suppress display list regeneration for animated image updates. r=nical 2018-11-02 09:09:52 -04:00
ImageLoader.h Bug 1497981 - Simplify ImageLoader::LoadImage. r=heycam 2018-10-15 12:24:58 +00:00
LayerAnimationInfo.cpp Bug 1504929 - Introduce LayerAnimationInfo::sDisplayItemTypes and iterate it instead of LayerAnimationInfo::sRecords. r=birtles 2018-11-13 10:22:24 +00:00
LayerAnimationInfo.h Bug 1504929 - Introduce LayerAnimationInfo::sDisplayItemTypes and iterate it instead of LayerAnimationInfo::sRecords. r=birtles 2018-11-13 10:22:24 +00:00
Loader.cpp Bug 1498510 - Move nsICSPEventListener out of CSP object, r=ckerschb 2018-10-23 08:17:13 +02:00
Loader.h Bug 1494745 part 4 - Make Loader::AddObserver void since it's infallible. r=bz 2018-10-14 18:12:23 +02:00
MappedDeclarations.cpp Bug 1449806: followup: Fix a typo that I made while addressing review comments. r=me CLOSED TREE 2018-06-25 11:36:25 +02:00
MappedDeclarations.h Bug 1449806: Merge {Servo,Generic}SpecifiedValues into MappedDeclarations. r=xidorn 2018-06-25 11:14:39 +02:00
MediaFeatureChange.h Bug 1435939: Make media feature changes always async. r=bz 2018-02-07 15:27:30 +01:00
MediaList.cpp Bug 1473735 - Add memory reporting for MediaQueryLists. r=emilio 2018-07-06 11:09:12 +10:00
MediaList.h Bug 1473735 - Add memory reporting for MediaQueryLists. r=emilio 2018-07-06 11:09:12 +10:00
MediaQueryList.cpp Bug 1490012 - Don't flush on the parent document if we already have a pres context. r=xidorn 2018-09-12 15:45:18 +02:00
MediaQueryList.h Bug 1473856 - MediaQueryList could use ProbablyShortLivingWrapper + LastRelease, r=bz 2018-07-07 03:08:35 +03:00
PaintWorkletGlobalScope.cpp Bug 1503236 - Move WorkletImpl reference from WorkletGlobalScope to classes inheriting WorkletGlobalScope r=karlt 2018-10-31 23:03:39 +00:00
PaintWorkletGlobalScope.h Bug 1503236 - Move WorkletImpl reference from WorkletGlobalScope to classes inheriting WorkletGlobalScope r=karlt 2018-10-31 23:03:39 +00:00
PaintWorkletImpl.cpp Bug 1503228 - Move PaintWorkletGlobalScope from dom/worklet to layout/style. r=karlt 2018-10-31 03:47:04 +00:00
PaintWorkletImpl.h Bug 1492014 add AudioWorkletImpl/PaintWorkletImpl subclasses r=baku 2018-09-20 11:34:01 +00:00
PostTraversalTask.cpp
PostTraversalTask.h
PreloadedStyleSheet.cpp Bug 1386840: Defer loading and don't block rendering for non-matching stylesheets. r=bz,heycam 2018-04-26 16:44:03 +02:00
PreloadedStyleSheet.h Bug 1447828 part 7 - Remove StyleBackendType uses from PreloadedStyleSheet. r=emilio 2018-03-29 02:34:34 +11:00
Rule.cpp Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
Rule.h Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
RustCell.h Bug 1498755 - Part 5: Split ServoCell out into a separate header, rename it, and clean it up a bit r=emilio 2018-10-14 00:05:54 +00:00
ServoArcTypeList.h Bug 1505949 - layout/style/{BorrowedTypeList.h,ServoArcTypeList.h,ServoBoxedTypeList.h} content should remain on a single line r=heycam 2018-11-09 13:31:39 +00:00
ServoBindingTypes.h Bug 1498755 - Part 11: Move Gecko borrowed FFI types to a separate header file r=emilio 2018-10-14 00:06:13 +00:00
ServoBindings.h Bug 1504034 - Part 3: Store the Rust QuotePair slice as the computed quotes value in Gecko style structs r=emilio 2018-11-06 23:03:24 +00:00
ServoBindings.toml Bug 1507127 - Also move page-break-inside outside of mako. r=heycam 2018-11-15 08:16:23 +00:00
ServoBoxedTypeList.h Bug 1505949 - layout/style/{BorrowedTypeList.h,ServoArcTypeList.h,ServoBoxedTypeList.h} content should remain on a single line r=heycam 2018-11-09 13:31:39 +00:00
ServoCSSParser.cpp Bug 1496486 - Remove nsCSSValue usage from font code. r=heycam 2018-10-09 19:07:41 +02:00
ServoCSSParser.h Bug 1496486 - Remove nsCSSValue usage from font code. r=heycam 2018-10-09 19:07:41 +02:00
ServoCSSPropList.mako.py Bug 1507305 - Use Servo to serialize most of the already-exposed shorthands. r=heycam 2018-11-15 04:10:08 +00:00
ServoCSSRuleList.cpp Bug 1489454 - Remove all trailing whitespaces (again) r=Ehsan 2018-09-07 14:47:51 +00:00
ServoCSSRuleList.h Bug 1472065 - Initialize mSheet and mParentRule in css::Rule's constructor. r=xidorn 2018-06-29 12:56:09 +10:00
ServoComputedData.h Bug 1498755 - Part 6: Move some C++ types from ServoBindingTypes.h to ServoTypes.h r=emilio 2018-10-14 00:05:56 +00:00
ServoComputedDataInlines.h Bug 1461933 - Remove ServoBindings.h from ComputedStyleInline.h. r=emilio 2018-05-16 15:35:59 +10:00
ServoElementSnapshot.cpp Bug 1498755 - Part 2c: Allow ServoBindings.h and GeckoBindings.h to be used separately r=emilio 2018-10-14 00:05:48 +00:00
ServoElementSnapshot.h Bug 1483964: Manually inline class and ID getters. r=xidorn 2018-08-17 14:26:45 +02:00
ServoElementSnapshotTable.h
ServoStyleSet.cpp Bug 1497734 - Rename nsStaticAtom subclasses. r=heycam 2018-10-10 16:49:13 +11:00
ServoStyleSet.h Bug 1497734 - Rename nsStaticAtom subclasses. r=heycam 2018-10-10 16:49:13 +11:00
ServoStyleSetInlines.h Bug 1478069: Trivial frame constructor cleanup. r=TYLin 2018-07-25 11:31:18 +02:00
ServoTraversalStatistics.h Bug 1444296 part 1 - Have servo report traversal statistics to gecko. r=bholley 2018-03-15 11:59:22 +11:00
ServoTypes.h Bug 1498755 - Part 6: Move some C++ types from ServoBindingTypes.h to ServoTypes.h r=emilio 2018-10-14 00:05:56 +00:00
ServoUtils.h Bug 1498755 - Part 3: Merge AssertIsMainThreadOrServo{FontMetrics,LangFontPrefsCache}Locked r=emilio 2018-10-14 00:05:50 +00:00
SheetLoadData.h Bug 1330487 - Part 1: Parse referrer policy from header and propagate to stylesheet r=heycam 2018-09-17 05:35:26 +00:00
SheetParsingMode.h
SheetType.h Bug 1444905: Remove scoped style support from the old style system. r=xidorn,smaug 2018-03-13 10:26:13 +01:00
StreamLoader.cpp Bug 1470420: Cleanup ParseSheet. r=xidorn 2018-06-22 17:23:00 +02:00
StreamLoader.h Bug 1454460 - Buffer the potentially-BOM-related bytes separately and handle them on the fly. r=bz 2018-04-17 16:27:08 -07:00
StyleAnimationValue.cpp Bug 1483394: Remove unneeded #includes of nsContentUtils.h in /layout. r=TYLin 2018-08-15 07:04:43 +00:00
StyleAnimationValue.h Bug 1465585: Switch from mozilla::Move to std::move. r=froydnj 2018-06-01 10:45:27 +02:00
StyleComplexColor.cpp Bug 1467621 - P1: nsCSSShadowItem - Change nscolor to StyleComplexColor. r=xidorn 2018-06-19 14:18:33 +10:00
StyleComplexColor.h Bug 1467622 - P1: nsStyleSVGPaint - Change nscolor to StyleComplexColor. r=xidorn 2018-06-27 17:07:37 +10:00
StyleSheet.cpp Bug 1330487 - Part 3: Propagate referrer policy from doc/sheet to URLExtraData r=heycam 2018-09-17 05:36:45 +00:00
StyleSheet.h Bug 1498755 - Part 7: Tweak a few things in ServoBindingTypes.h r=emilio 2018-10-14 00:05:59 +00:00
StyleSheetInfo.h Bug 1498755 - Part 11: Move Gecko borrowed FFI types to a separate header file r=emilio 2018-10-14 00:06:13 +00:00
StyleSheetInlines.h Bug 1484690 - Move the enabled state to the sheet instead of sharing it. r=heycam 2018-08-21 08:55:10 +00:00
TopLevelImageDocument.css
TopLevelVideoDocument.css Bug 1474574 - Ensure <video> is the only focusable element in TopLevelVideoDocument r=Gijs 2018-07-11 11:51:48 +08:00
URLExtraData.cpp Bug 1496312 - Don't release URLExtraData::{mBaseURI,mReferrer} on the main thread r=emilio 2018-10-04 07:15:03 +00:00
URLExtraData.h Bug 1496308 - Require URLExtraData::mPrincipal to be non-null r=emilio 2018-10-10 03:10:07 +00:00
bindgen.toml.in Bug 1490948: Add support for extra bindgen flags when compiling Cranelift; r=froydnj 2018-09-25 15:31:22 +02:00
contenteditable.css Bug 1506547 - Align user-select behavior more with other UAs. r=mats 2018-11-26 09:21:37 +00:00
designmode.css
jar.mn Bug 1317541 - Merge number-control.css back into forms.css. r=mats 2018-04-10 11:04:41 +10:00
moz.build Bug 1479173 - Add a static constexpr function returns an nsCSSPropertyIDSet being consist of CSS properties set can be run on the compositor. r=heycam,birtles 2018-11-06 21:00:38 +00:00
nsAnimationManager.cpp Bug 1506538 - Remove +x permissions on C++ source files r=Ehsan 2018-11-13 15:32:08 +00:00
nsAnimationManager.h Bug 1456394 - Merge KeyframeEffectReadOnly and KeyframeEffect; r=bz,hiro 2018-05-07 11:08:59 +09:00
nsCSSAnonBoxList.h Bug 1421105 Part 2 - Implement column-span for block and inline frames. r=bzbarsky,dbaron 2018-10-30 05:41:30 +00:00
nsCSSAnonBoxes.cpp Bug 1482782 - Part 7: Expand out nsStaticAtom.h macros now that we only static atom table. r=njn 2018-08-15 15:46:42 +10:00
nsCSSAnonBoxes.h Bug 1497734 - Rename nsStaticAtom subclasses. r=heycam 2018-10-10 16:49:13 +11:00
nsCSSCounterDescList.h Bug 1412346 part 5: (automated patch) Switch a bunch of C++ files in layout to use our standard mode lines. r=jfkthame 2017-10-27 10:33:53 -07:00
nsCSSFontDescList.h Bug 1435984 - patch 2 - Support the font-variation-settings descriptor when parsing @font-face in the old Gecko style system. r=jwatt 2018-02-14 22:02:05 +11:00
nsCSSKeywordList.h Bug 1501261 - Part 1: Use Servo to serialize border-image-repeat r=firefox-style-system-reviewers,emilio 2018-11-05 02:21:39 +00:00
nsCSSKeywords.cpp Bug 1412346 part 5: (automated patch) Switch a bunch of C++ files in layout to use our standard mode lines. r=jfkthame 2017-10-27 10:33:53 -07:00
nsCSSKeywords.h Bug 1412346 part 5: (automated patch) Switch a bunch of C++ files in layout to use our standard mode lines. r=jfkthame 2017-10-27 10:33:53 -07:00
nsCSSPropertyID.h.in Bug 1454831 - Generate nsCSSPropertyID.h from data file directly. r=emilio 2018-04-18 19:39:51 +10:00
nsCSSPropertyIDSet.h Bug 1504929 - Stop iterating EffectSets and KeyframeEffect::mProperties for each CSS properties that can be animated on the compositor. r=birtles 2018-11-13 10:22:26 +00:00
nsCSSProps.cpp Bug 1460439 - Conversion from NS_STYLE_BORDER_STYLE_* macro to StyleBorderStyle::* enum class r=emilio 2018-11-07 11:56:17 -08:00
nsCSSProps.h Bug 1501261 - Part 1: Use Servo to serialize border-image-repeat r=firefox-style-system-reviewers,emilio 2018-11-05 02:21:39 +00:00
nsCSSPseudoElementList.h Bug 1482782 - Part 4: Move CSS pseudo-element atoms to nsGkAtoms. r=njn,emilio 2018-08-15 15:46:00 +10:00
nsCSSPseudoElements.cpp Bug 1482782 - Part 7: Expand out nsStaticAtom.h macros now that we only static atom table. r=njn 2018-08-15 15:46:42 +10:00
nsCSSPseudoElements.h Bug 1497734 - Rename nsStaticAtom subclasses. r=heycam 2018-10-10 16:49:13 +11:00
nsCSSValue.cpp Bug 1495984 - Make css::URLValue::IsLocalRef call into CssUrlData::is_fragment. r=emilio 2018-10-17 09:43:45 +00:00
nsCSSValue.h Bug 1495984 - Make css::URLValue::IsLocalRef call into CssUrlData::is_fragment. r=emilio 2018-10-17 09:43:45 +00:00
nsCSSVisitedDependentPropList.h Bug 1483090 - Rename StyleUserInterface to StyleUI. r=emilio 2018-08-14 08:37:37 +00:00
nsComputedDOMStyle.cpp Bug 1507305 - Use Servo to serialize most of the already-exposed shorthands. r=heycam 2018-11-15 04:10:08 +00:00
nsComputedDOMStyle.h Bug 1507305 - Use Servo to serialize most of the already-exposed shorthands. r=heycam 2018-11-15 04:10:08 +00:00
nsDOMCSSAttrDeclaration.cpp Bug 1498445 - Stop creating a style attribute for invalid property values. r=smaug 2018-10-12 09:07:00 +00:00
nsDOMCSSAttrDeclaration.h Bug 1498755 - Part 6: Move some C++ types from ServoBindingTypes.h to ServoTypes.h r=emilio 2018-10-14 00:05:56 +00:00
nsDOMCSSDeclaration.cpp Bug 1498445 - Stop creating a style attribute for invalid property values. r=smaug 2018-10-12 09:07:00 +00:00
nsDOMCSSDeclaration.h Bug 1498755 - Part 6: Move some C++ types from ServoBindingTypes.h to ServoTypes.h r=emilio 2018-10-14 00:05:56 +00:00
nsDOMCSSValueList.cpp Bug 1494622 - Simplify CSSValue and co a bit more. r=xidorn 2018-09-27 16:11:45 +02:00
nsDOMCSSValueList.h Bug 1494622 - Simplify CSSValue and co a bit more. r=xidorn 2018-09-27 16:11:45 +02:00
nsFontFaceLoader.cpp Bug 1496486 - Remove nsCSSValue usage from font code. r=heycam 2018-10-09 19:07:41 +02:00
nsFontFaceLoader.h Bug 1496486 - Remove nsCSSValue usage from font code. r=heycam 2018-10-09 19:07:41 +02:00
nsFontFaceUtils.cpp Bug 1490997 - Use nsAtom instead of nsString for font family name in the FontFamilyName struct, and switch its methods from 16-bit to 8-bit strings. r=lsalzman 2018-09-18 09:34:21 +01:00
nsFontFaceUtils.h Bug 1412346 part 5: (automated patch) Switch a bunch of C++ files in layout to use our standard mode lines. r=jfkthame 2017-10-27 10:33:53 -07:00
nsHTMLCSSStyleSheet.cpp Bug 1464496 - Part 1: Merge ServoDeclarationBlock and DeclarationBlock r=emilio 2018-05-30 18:15:25 +02:00
nsHTMLCSSStyleSheet.h Bug 1447358: Unifdef the old style system code. r=jwatt 2018-03-21 10:20:34 +01:00
nsHTMLStyleSheet.cpp Bug 1451289 - Part 7: Merge ServoPageRule and CSSPageRule r=emilio 2018-06-05 13:39:42 +02:00
nsHTMLStyleSheet.h Bug 1464496 - Part 1: Merge ServoDeclarationBlock and DeclarationBlock r=emilio 2018-05-30 18:15:25 +02:00
nsICSSDeclaration.cpp Bug 1428610 part 1. Devirtualize nsICSSDeclaration::GetDocGroup. r=emilio 2018-01-30 14:48:26 -05:00
nsICSSDeclaration.h Bug 1408301: Remove getPropertyCSSValue. r=bz 2018-05-12 11:23:47 +02:00
nsICSSLoaderObserver.h Bug 1412346 part 5: (automated patch) Switch a bunch of C++ files in layout to use our standard mode lines. r=jfkthame 2017-10-27 10:33:53 -07:00
nsLayoutStylesheetCache.cpp Bug 1470873 - Part 1 - Remove support for "components.css". r=bzbarsky 2018-11-15 14:34:18 +00:00
nsLayoutStylesheetCache.h Bug 1470873 - Part 1 - Remove support for "components.css". r=bzbarsky 2018-11-15 14:34:18 +00:00
nsMediaFeatures.cpp Bug 1505159 - Make some media features code nicer using [infallible]. r=hiro 2018-11-06 21:06:00 +00:00
nsMediaFeatures.h Bug 1481961: Rewrite media queries so that they work on an evaluator function. r=xidorn 2018-08-15 16:09:19 +02:00
nsROCSSPrimitiveValue.cpp Bug 1498734 - Always compute angle values to degrees. r=xidorn 2018-10-13 00:41:03 +00:00
nsROCSSPrimitiveValue.h Bug 1498734 - Always compute angle values to degrees. r=xidorn 2018-10-13 00:41:03 +00:00
nsStyleAutoArray.h Bug 1412346 part 5: (automated patch) Switch a bunch of C++ files in layout to use our standard mode lines. r=jfkthame 2017-10-27 10:33:53 -07:00
nsStyleConsts.h Bug 1492958 - Move user-select outside of mako. r=xidorn 2018-11-12 13:46:52 +01:00
nsStyleCoord.cpp Bug 1498734 - Always compute angle values to degrees. r=xidorn 2018-10-13 00:41:03 +00:00
nsStyleCoord.h Bug 1496558 - Part 1: Store the correct computed values for keywords for sizing properties r=mats 2018-10-16 19:38:41 +00:00
nsStyleStruct.cpp Bug 1507127 - Also move page-break-inside outside of mako. r=heycam 2018-11-15 08:16:23 +00:00
nsStyleStruct.h Bug 1507127 - Also move page-break-inside outside of mako. r=heycam 2018-11-15 08:16:23 +00:00
nsStyleStructFwd.h Bug 1464060: Make the general setup for computed style bits nicer. r=xidorn 2018-05-28 10:40:00 +02:00
nsStyleStructInlines.h Bug 1483090 - Rename StyleUserInterface to StyleUI. r=emilio 2018-08-14 08:37:37 +00:00
nsStyleStructList.h Bug 1483090 - Rename StyleUserInterface to StyleUI. r=emilio 2018-08-14 08:37:37 +00:00
nsStyleTransformMatrix.cpp Bug 1505645 - Remove unused outparam from nsStyleTransformMatrix. r=boris 2018-11-08 02:25:28 +00:00
nsStyleTransformMatrix.h Bug 1505645 - Remove unused outparam from nsStyleTransformMatrix. r=boris 2018-11-08 02:25:28 +00:00
nsStyleUtil.cpp Bug 1501117 - Part 2: Serialize timing function from web animation api with servo. r=emilio,birtles 2018-11-01 21:33:56 +00:00
nsStyleUtil.h Bug 1501117 - Part 2: Serialize timing function from web animation api with servo. r=emilio,birtles 2018-11-01 21:33:56 +00:00
nsTimingFunction.h Bug 1496619 - part 6: Generate StyleTimingFunction and drop ns_timing_function.rs r=emilio,birtles 2018-10-26 18:03:35 +00:00
nsTransitionManager.cpp Bug 1506538 - Remove +x permissions on C++ source files r=Ehsan 2018-11-13 15:32:08 +00:00
nsTransitionManager.h Bug 1498948 - Refactor KeyframeEffect constructor to use r-value reference. r=boris 2018-10-16 00:38:00 +03:00