aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmlimageelement.rs
Commit message (Expand)AuthorAgeFilesLines
* Avoid splitting a code point when parsing HTMLImageElement.usemapcb_splitmichael@notriddle.com2017-03-251-3/+4
* Implement the form owner conceptMukilan Thiyagarajan2017-03-151-1/+22
* Auto merge of #15882 - ak1t0:clean-up-htmlimageelement, r=Ms2gerbors-servo2017-03-131-16/+9
|\
| * Clean up HTMLImageElement::areasak1t02017-03-131-16/+9
* | Change while loop in HTMLImageElement::handle_event to for loopHugh Gallagher2017-03-101-8/+9
|/
* Auto merge of #15771 - jdm:img-panic, r=noxbors-servo2017-03-081-26/+39
|\
| * Avoid marking image element as complete before its image data is available.Josh Matthews2017-03-071-1/+3
| * Initiate a new image request when an image element's adopting steps are run.Josh Matthews2017-03-011-22/+20
| * Ignore image cache updates for image requests that have been aborted.Josh Matthews2017-02-281-3/+16
* | Make #[dom_struct] a proc_macro attributeAnthony Ramine2017-02-241-0/+1
|/
* Split HTMLImageElement's loading code into smaller pieces with fewer runnables.Josh Matthews2017-02-221-145/+133
* Send response for image requests progressively to image cache.Josh Matthews2017-02-221-21/+28
* Avoid dropping image requests on the ground from non-script-initiated reflow.Josh Matthews2017-02-221-2/+4
* Make script thread initiate requests for images needed by layout.Josh Matthews2017-02-221-12/+176
* script: Properly implement the image width and height getter.Emilio Cobos Álvarez2017-01-181-4/+8
* script: Rename bounding_content_box to bounding_content_box_or_zero.Emilio Cobos Álvarez2017-01-181-2/+2
* Handle crossorigin in link and refactor crossorigin handlingmrnayak2017-01-131-2/+8
* HTML image map supportbachar2017-01-111-0/+79
* Make WebIDL constructors take a more specific global if possible (fixes #14071)Rohan Prinja2016-11-301-3/+3
* Urlmageddon: Use refcounted urls more often.Emilio Cobos Álvarez2016-11-171-7/+7
* Properly implement TaskSource for NetworkingTaskSourceKeith Yeung2016-11-111-6/+2
* Migrate `EventTarget` event firing functions to use `Atom`s.Corey Farwell2016-11-031-4/+4
* Remove "fire a simple event" concept, refactor event firing API.Corey Farwell2016-11-031-4/+4
* Update to string-cache 0.3Simon Sapin2016-11-031-14/+14
* Make make_enumerated_getter prettier again.Corey Farwell2016-10-121-1/+1
* Remove intrinsic Root::r()Anthony Ramine2016-10-111-5/+4
* Make TaskSource::queue take a &GlobalScopeAnthony Ramine2016-10-061-2/+1
* Pass a &GlobalScope to WebIDL static methods and constructorsAnthony Ramine2016-10-061-2/+3
* Introduce GlobalScope::as_windowAnthony Ramine2016-10-061-1/+1
* Auto merge of #13387 - emilio:debug-assertions, r=aneeshusa,jdm,pcwaltonbors-servo2016-10-041-2/+15
|\
| * script: Prevent an integer overflow that was hitting us on htmlimageelement.rsEmilio Cobos Álvarez2016-10-021-2/+15
* | Make script build without `impl<T: HeapSizeOf> HeapSizeOf for Arc<T>`.Simon Sapin2016-10-041-0/+1
|/
* Most of the code refactoring needed to be done is done with this commit.Arthur Marble2016-09-181-4/+4
* Trigger image.onerrorPaul Rouget2016-08-231-4/+9
* Make task queue API usable from non-main threads.Josh Matthews2016-07-141-1/+1
* Inline DOM element creation into box expressions in components/script/dom/Kuba Birecki2016-07-141-2/+3
* Move boxing to runnable initializationConnor Brewster2016-07-131-2/+2
* Make all task source runnables cancellableConnor Brewster2016-07-131-4/+3
* Add event runnablesConnor Brewster2016-07-111-1/+1
* Implement Runnable::name() for ImageResponseHandlerRunnableGabriel Poesia2016-07-101-0/+2
* Combined DOMManipulationTask runnable variants into a single variantConnor Brewster2016-07-061-1/+1
* Don't crash when <img> fails to parse its srcManish Goregaokar2016-07-051-31/+73
* Stop re-exporting AttrValue.Ms2ger2016-06-071-2/+1
* Move LengthOrPercentageOrAuto to style::attr.Ms2ger2016-06-061-1/+1
* Move DOMString back to scriptAnthony Ramine2016-05-241-5/+6
* Removed unused importsPer Lundberg2016-05-151-2/+1
* Remove extraneous script_chan parameter from Trusted::newKeith Yeung2016-04-281-1/+1
* Upgrade to rust-url 1.0 and hyper 0.9Simon Sapin2016-04-231-1/+1
* Issue #10574 Use the document base url in imgArnaud Marant2016-04-151-1/+1
* Implement image request concept for HTMLImageElement. Implement HTMLImageElem...akhan72016-04-121-18/+55