servo/components/script/dom
Simon Sapin d2be5239f5 Avoid returning / passing around a huge ParsedDeclaration type
This enum type used to contain the result of parsing
one CSS source declaration (`name: value;`) and expanding shorthands.
Enum types are as big as the biggest of their variant (plus discriminant),
which was quite big because some shorthands
expand to many longhand properties.
This type was returned through many functions and methods,
wrapped and rewrapped in `Result` with different error types.
This presumably caused significant `memmove` traffic.

Instead, we now allocate an `ArrayVec` on the stack
and pass `&mut` references to it for various functions to push into it.
This type is also very big, but we never move it.

We still use an intermediate data structure because we sometimes decide
after shorthand expansion that a declaration is invalid after all
and that we’re gonna drop it.
Only later do we push to a `PropertyDeclarationBlock`,
with an entire `ArrayVec` or nothing.

In future work we can try to avoid a large stack-allocated array,
and instead writing directly to the heap allocation
of the `Vec` inside `PropertyDeclarationBlock`.
However this is tricky:
we need to preserve this "all or nothing" aspect
of parsing one source declaration,
and at the same time we want to make it as little error-prone as possible
for the various call sites.
`PropertyDeclarationBlock` curently does property deduplication
incrementally: as each `PropertyDeclaration` is pushed,
we check if an existing declaration of the same property exists
and if so overwrite it.
To get rid of the stack allocated array we’d need to somehow
deduplicate separately after pushing multiple `PropertyDeclaration`.
2017-05-19 18:53:25 +02:00
..
bindings Implement WebGL extensions. 2017-05-18 18:44:07 +02:00
servoparser Upgrade to html5ever 0.16 2017-05-02 19:24:28 +02:00
webgl_extensions Implement WebGL extensions. 2017-05-18 18:44:07 +02:00
webgl_validations Implement WebGL extensions. 2017-05-18 18:44:07 +02:00
webidls Implement WebGL extensions. 2017-05-18 18:44:07 +02:00
abstractworker.rs Remove and allow some dead code. 2016-12-22 16:06:22 +01:00
abstractworkerglobalscope.rs Rename Reflectable to DomObject. 2016-12-08 08:50:35 -10:00
activation.rs Remove intrinsic Root::r() 2016-10-11 19:44:32 +02:00
attr.rs Mutation Observer API 2017-05-15 18:15:38 -04:00
beforeunloadevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
blob.rs Fix indentation errors in servo rust code that tidy now finds. 2017-04-18 14:56:13 -04:00
bluetooth.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
bluetoothadvertisingevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
bluetoothcharacteristicproperties.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
bluetoothdevice.rs removed instances of -> () in existing code 2017-03-13 17:38:33 +01:00
bluetoothpermissionresult.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
bluetoothremotegattcharacteristic.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
bluetoothremotegattdescriptor.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
bluetoothremotegattserver.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
bluetoothremotegattservice.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
bluetoothuuid.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
canvasgradient.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
canvaspattern.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
canvasrenderingcontext2d.rs Remove IndexSizeError in CanvasRenderingContext2D::drawImage 2017-04-29 19:27:00 +02:00
characterdata.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
client.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
closeevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
comment.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
console.rs Pass a &GlobalScope to WebIDL static methods and constructors 2016-10-06 21:35:49 +02:00
create.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
crypto.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
css.rs Make ParsingMode bitflags. 2017-05-14 07:15:19 +09:00
cssconditionrule.rs Fix up script and layout. 2017-05-02 17:35:45 -07:00
cssfontfacerule.rs Fix up script and layout. 2017-05-02 17:35:45 -07:00
cssgroupingrule.rs Fix up script and layout. 2017-05-02 17:35:45 -07:00
cssimportrule.rs Fix up script and layout. 2017-05-02 17:35:45 -07:00
csskeyframerule.rs Fix up script and layout. 2017-05-02 17:35:45 -07:00
csskeyframesrule.rs Fix up script and layout. 2017-05-02 17:35:45 -07:00
cssmediarule.rs Make ParsingMode bitflags. 2017-05-14 07:15:19 +09:00
cssnamespacerule.rs Fix up script and layout. 2017-05-02 17:35:45 -07:00
cssrule.rs Stylo: Bug 1355408 - add support for @-moz-document 2017-05-09 12:52:44 +02:00
cssrulelist.rs Fix up script and layout. 2017-05-02 17:35:45 -07:00
cssstyledeclaration.rs Avoid returning / passing around a huge ParsedDeclaration type 2017-05-19 18:53:25 +02:00
cssstylerule.rs Fix up script and layout. 2017-05-02 17:35:45 -07:00
cssstylesheet.rs Fix up script and layout. 2017-05-02 17:35:45 -07:00
csssupportsrule.rs Make ParsingMode bitflags. 2017-05-14 07:15:19 +09:00
cssviewportrule.rs Fix up script and layout. 2017-05-02 17:35:45 -07:00
customevent.rs removing mutHeapJs references 2017-03-07 17:37:44 +08:00
dedicatedworkerglobalscope.rs Renamed constellation::Frame to constellation::BrowsingContext. 2017-05-15 21:03:11 -05:00
dissimilaroriginlocation.rs Fix various build warnings 2017-04-24 22:54:06 -07:00
dissimilaroriginwindow.rs Renamed constellation::Frame to constellation::BrowsingContext. 2017-05-15 21:03:11 -05:00
document.rs Auto merge of #16876 - asajeffrey:constellation-rename-frames, r=cbrewster 2017-05-16 23:10:45 -05:00
documentfragment.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
documenttype.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
domexception.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
domimplementation.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
dommatrix.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
dommatrixreadonly.rs Fix indentation errors in servo rust code that tidy now finds. 2017-04-18 14:56:13 -04:00
domparser.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
dompoint.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
dompointreadonly.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
domquad.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
domrect.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
domrectreadonly.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
domstringmap.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
domtokenlist.rs Upgrade to html5ever 0.16 2017-05-02 19:24:28 +02:00
element.rs ol[type=…] and li[type=…] preshints need to be case-sensitive 2017-05-18 17:13:18 +02:00
errorevent.rs removing mutHeapJs references 2017-03-07 17:37:44 +08:00
event.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
eventsource.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
eventtarget.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
extendableevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
extendablemessageevent.rs Fix unsafe Heap constructor usage in DOM objects 2017-05-04 01:07:23 +02:00
file.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
filelist.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
filereader.rs Replace use of rustc_serialize::base64 by base64 2017-03-26 14:15:31 +02:00
filereadersync.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
focusevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
forcetouchevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
formdata.rs Upgrade to html5ever 0.16 2017-05-02 19:24:28 +02:00
gamepad.rs Fix unsafe Heap constructor usage in DOM objects 2017-05-04 01:07:23 +02:00
gamepadbutton.rs Implement Gamepad API 2017-04-12 15:43:14 +02:00
gamepadbuttonlist.rs Implement Gamepad API 2017-04-12 15:43:14 +02:00
gamepadevent.rs Implement Gamepad API 2017-04-12 15:43:14 +02:00
gamepadlist.rs Implement Gamepad API 2017-04-12 15:43:14 +02:00
globalscope.rs Implemented Houdini worklets. 2017-05-17 09:01:05 -05:00
hashchangeevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
headers.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
history.rs Make History attributes and methods throw 2017-05-02 11:22:36 -06:00
htmlanchorelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlappletelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlareaelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlaudioelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlbaseelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlbodyelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlbrelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlbuttonelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlcanvaselement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlcollection.rs Upgrade to html5ever 0.16 2017-05-02 19:24:28 +02:00
htmldataelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmldatalistelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmldetailselement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmldialogelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmldirectoryelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmldivelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmldlistelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlembedelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlfieldsetelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlfontelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlformcontrolscollection.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
htmlformelement.rs Make non-initial about:blank loads asynchronous 2017-05-12 11:53:43 -06:00
htmlframeelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlframesetelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlheadelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlheadingelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlhrelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlhtmlelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmliframeelement.rs Renamed constellation::Frame to constellation::BrowsingContext. 2017-05-15 21:03:11 -05:00
htmlimageelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlinputelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmllabelelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmllegendelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmllielement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmllinkelement.rs Make ParsingMode bitflags. 2017-05-14 07:15:19 +09:00
htmlmapelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlmediaelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlmetaelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlmeterelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlmodelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlobjectelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlolistelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmloptgroupelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmloptionelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmloptionscollection.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
htmloutputelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlparagraphelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlparamelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlpreelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlprogresselement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlquoteelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlscriptelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlselectelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlsourceelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlspanelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlstyleelement.rs Make ParsingMode bitflags. 2017-05-14 07:15:19 +09:00
htmltablecaptionelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmltablecellelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmltablecolelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmltabledatacellelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmltableelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmltableheadercellelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmltablerowelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmltablesectionelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmltemplateelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmltextareaelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmltimeelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmltitleelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmltrackelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlulistelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlunknownelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
htmlvideoelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
imagedata.rs Make ImageData::new return Fallible instead of panic 2017-03-20 21:16:55 +01:00
keyboardevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
location.rs Fix various build warnings 2017-04-24 22:54:06 -07:00
macros.rs Refactor some window_from_node calls based on feedback 2017-02-03 14:57:08 -05:00
mediaerror.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
medialist.rs Make ParsingMode bitflags. 2017-05-14 07:15:19 +09:00
mediaquerylist.rs Propagate quirks mode all the way to ParserContext 2017-04-27 10:41:55 +02:00
mediaquerylistevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
messageevent.rs Fix unsafe Heap constructor usage in DOM objects 2017-05-04 01:07:23 +02:00
mimetype.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
mimetypearray.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
mod.rs Implement WebGL extensions. 2017-05-18 18:44:07 +02:00
mouseevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
mutationobserver.rs Silence a warning in script::dom::mutationobserver 2017-05-18 09:57:22 +02:00
mutationrecord.rs Mutation Observer API 2017-05-15 18:15:38 -04:00
namednodemap.rs Upgrade to html5ever 0.16 2017-05-02 19:24:28 +02:00
navigator.rs Implement Gamepad API 2017-04-12 15:43:14 +02:00
navigatorinfo.rs Removed util. 2016-12-14 18:04:37 -06:00
node.rs Auto merge of #16900 - emilio:pseudos, r=bholley 2017-05-17 05:40:14 -05:00
nodeiterator.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
nodelist.rs Stop using unstable slice_patterns feature 2017-05-01 14:19:00 -07:00
pagetransitionevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
performance.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
performancetiming.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
permissions.rs Use servo_config::opts only on linux target. 2017-03-21 15:55:45 +01:00
permissionstatus.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
plugin.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
pluginarray.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
popstateevent.rs removing mutHeapJs references 2017-03-07 17:37:44 +08:00
processinginstruction.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
progressevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
promise.rs Implemented Houdini worklets. 2017-05-17 09:01:05 -05:00
promisenativehandler.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
radionodelist.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
range.rs Remove obsolete step from Text::SplitText 2017-03-07 13:31:22 +01:00
request.rs Kill Request::omit_origin_header 2017-04-07 12:52:50 +02:00
response.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
screen.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
serviceworker.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
serviceworkercontainer.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
serviceworkerglobalscope.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
serviceworkerregistration.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
storage.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
storageevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
stylesheet.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
stylesheetlist.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
svgelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
svggraphicselement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
svgsvgelement.rs Solving merge conficts related to the html5ever_atoms -> html5ever change 2017-05-03 12:57:49 -05:00
testbinding.rs removed instances of -> () in existing code 2017-03-13 17:38:33 +01:00
testbindingiterable.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
testbindingpairiterable.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
testbindingproxy.rs removed instances of -> () in existing code 2017-03-13 17:38:33 +01:00
testrunner.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
testworklet.rs Implemented Houdini worklets. 2017-05-17 09:01:05 -05:00
testworkletglobalscope.rs Implemented Houdini worklets. 2017-05-17 09:01:05 -05:00
text.rs Remove obsolete step from Text::SplitText 2017-03-07 13:31:22 +01:00
textdecoder.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
textencoder.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
touch.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
touchevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
touchlist.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
transitionevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
treewalker.rs Fix indentation errors in servo rust code that tidy now finds. 2017-04-18 14:56:13 -04:00
uievent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
url.rs Remove some useless Option<T> wrappers from ServoUrl methods 2017-03-26 16:15:06 +02:00
urlhelper.rs Remove some useless Option<T> wrappers from ServoUrl methods 2017-03-26 16:15:06 +02:00
urlsearchparams.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
userscripts.rs apply user scripts correctly 2017-03-13 21:57:50 +08:00
validation.rs html form validation initial steps with test html file, added stub methods, added code to handle validations 2016-11-23 22:46:57 -08:00
validitystate.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
values.rs
virtualmethods.rs Upgrade to html5ever 0.16 2017-05-02 19:24:28 +02:00
vr.rs Implement Gamepad API 2017-04-12 15:43:14 +02:00
vrdisplay.rs Implement Gamepad API 2017-04-12 15:43:14 +02:00
vrdisplaycapabilities.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
vrdisplayevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
vreyeparameters.rs Fix unsafe Heap constructor usage in DOM objects 2017-05-04 01:07:23 +02:00
vrfieldofview.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
vrframedata.rs Fix unsafe Heap constructor usage in DOM objects 2017-05-04 01:07:23 +02:00
vrpose.rs Fix unsafe Heap constructor usage in DOM objects 2017-05-04 01:07:23 +02:00
vrstageparameters.rs Fix unsafe Heap constructor usage in DOM objects 2017-05-04 01:07:23 +02:00
webglactiveinfo.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
webglbuffer.rs Implement WebGL extensions. 2017-05-18 18:44:07 +02:00
webglcontextevent.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
webglframebuffer.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
webglobject.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
webglprogram.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
webglrenderbuffer.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
webglrenderingcontext.rs Implement WebGL extensions. 2017-05-18 18:44:07 +02:00
webglshader.rs Fix highp precision in shaders & Implement WebGL::GetShaderPrecisionFormat 2017-04-21 20:23:55 +02:00
webglshaderprecisionformat.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
webgltexture.rs Implement WebGL extensions. 2017-05-18 18:44:07 +02:00
webgluniformlocation.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
websocket.rs Only pass the protocol in use in to establish a WS connection 2017-03-24 11:09:30 +01:00
window.rs Implemented Houdini worklets. 2017-05-17 09:01:05 -05:00
windowproxy.rs Renamed constellation::Frame to constellation::BrowsingContext. 2017-05-15 21:03:11 -05:00
worker.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
workerglobalscope.rs added origin to globalscope 2017-04-24 13:15:42 +01:00
workerlocation.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
workernavigator.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
worklet.rs Implemented Houdini worklets. 2017-05-17 09:01:05 -05:00
workletglobalscope.rs Implemented Houdini worklets. 2017-05-17 09:01:05 -05:00
xmldocument.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
xmlhttprequest.rs removing mutHeapJs references 2017-03-07 17:37:44 +08:00
xmlhttprequesteventtarget.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00
xmlhttprequestupload.rs Make #[dom_struct] a proc_macro attribute 2017-02-24 01:50:51 +01:00