aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | Disable ssl on android as openssl needs to be added to build system.Glenn Watson2014-09-011-0/+0
| |
* | Share code between HTMLScriptElement:Text and Node:GetTextContentGilles Leblanc2014-08-302-18/+15
| | | | | | | | | | | | | | Added a function in Node called collect_text_contents which is called from both places. Fixes #3157
* | Merge pull request #3186 from wenderen/Window.framesMs2ger2014-08-303-5/+6
|\ \ | | | | | | implement window.frames; r=Manishearth
| * | implement window.framesRohan Prinja2014-08-303-5/+6
| | |
* | | Merge pull request #3174 from Aaron1011/attrlist-namednodemapJosh Matthews2014-08-297-19/+24
|\ \ \ | | | | | | | | Rename AttrList to NamedNodeMap
| * | | Rename AttrList to NamedNodeMapAaron Hill2014-08-297-19/+24
| |/ / | | | | | | | | | This fixes issue #3135
* | | Merge pull request #3179 from mrobinson/iframesMartin Robinson2014-08-292-16/+0
|\ \ \ | |/ / |/| | Remove RenderListener::set_layer_clip_rect
| * | Remove RenderListener::set_layer_clip_rectBryan Bell2014-08-282-16/+0
| |/ | | | | | | It is currently unused.
* | Merge pull request #3181 from SimonSapin/sideways-textSimon Sapin2014-08-297-125/+185
|\ \ | | | | | | Sideways text
| * | Implement sideways text.Simon Sapin2014-08-296-40/+129
| | |
| * | Make text decorations be independent display items.Simon Sapin2014-08-293-90/+61
| | | | | | | | | | | | The goal it to avoid having too much layout logic (which gets more complex in vertical text) in gfx code.
* | | Merge pull request #3183 from ChrisParis/callback-returnJosh Matthews2014-08-292-2/+2
|\ \ \ | | | | | | | | Support callback return types in codegen
| * | | Support callback return types in codegenChris Paris2014-08-282-2/+2
| | | |
* | | | Disable same-origin.html for intermittent failures (fixes #3180).Ms2ger2014-08-291-24/+1
| |/ / |/| | | | | | | | | | | We don't currently implement the same-origin restriction at all, so there's little point in running this test.
* | | Merge pull request #3178 from SimonSapin/canvas-crateSimon Sapin2014-08-295-6/+13
|\ \ \ | | | | | | | | Add a canvas create, break script’s dependency on gfx.
| * | | Add a canvas create, break script’s dependency on gfx.Simon Sapin2014-08-285-6/+13
| | | | | | | | | | | | | | | | The build time on my laptop after touching gfx goes from 1m37s ot 46s.
* | | | Merge pull request #3141 from Manishearth/fetch-stuffManish Goregaokar2014-08-294-8/+403
|\ \ \ \ | |_|/ / |/| | | Some more Fetch and CORS Cache stuff; r=jdm
| * | | Some docsManish Goregaokar2014-08-272-34/+40
| | | |
| * | | Add a task-based CORS CacheManish Goregaokar2014-08-232-48/+208
| | | |
| * | | Add a basic CORS Cache and a CORS Cache traitManish Goregaokar2014-08-232-0/+155
| | | |
| * | | Add basic_fetch and a skeleton http_fetchManish Goregaokar2014-08-232-6/+80
| | | |
* | | | Merge pull request #3170 from SimonSapin/trait-object-transmuteSimon Sapin2014-08-293-28/+38
|\ \ \ \ | | | | | | | | | | Transmute std::raw::TraitObject rather than (some) custom tuples/structs
| * | | | Transmute std::raw::TraitObject rather than (some) custom tuples/structs.Simon Sapin2014-08-283-28/+38
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | Context: http://www.mail-archive.com/dev-servo@lists.mozilla.org/msg00867.html This fixes the known issues, but there might be other places where we do "bad" transmutes that I haven’t discovered.
* | | | Uppercase element.tagName for HTML elements onlyMatt Brubeck2014-08-285-35/+11
| | | | | | | | | | | | | | | | Fixes #3146
* | | | Introduce ConstantSpec::get_value.Ms2ger2014-08-281-9/+15
| | | | | | | | | | | | | | | | I'll need it for cross-origin wrappers as well.
* | | | Merge pull request #3175 from Ms2ger/propertyhooksMs2ger2014-08-282-3/+45
|\ \ \ \ | | | | | | | | | | Introduce the NativePropertyHooks struct; r=jdm
| * | | | Introduce the NativePropertyHooks struct.Ms2ger2014-08-282-3/+45
| | | | | | | | | | | | | | | | | | | | This will be required for the cross-origin wrapper work.
* | | | | Merge pull request #3176 from Manishearth/more-macrosMs2ger2014-08-287-28/+7
|\ \ \ \ \ | |/ / / / |/| | | | Use macro getters for input elements: r=Ms2ger
| * | | | Use macro getters for input elementsManish Goregaokar2014-08-287-28/+7
| | |/ / | |/| |
* | | | Merge pull request #3169 from Ms2ger/update-manifestMs2ger2014-08-2812-40/+1057
|\ \ \ \ | |_|_|/ |/| | | Update MANIFEST.json to current web-platform-tests; r=jdm
| * | | Update MANIFEST.json to current web-platform-tests.Ms2ger2014-08-2712-40/+1057
| | | | | | | | | | | | | | | | | | | | This was forgotten in the last update. The README is also updated as a reminder for future updates.
* | | | Fix comment syntaxMatt Brubeck2014-08-271-1/+1
| | | |
* | | | Fix <br> supportMatt Brubeck2014-08-275-2/+26
| |_|/ |/| |
* | | Remove some unneeded pubsMatt Brubeck2014-08-272-7/+7
| | |
* | | Merge pull request #3134 from glennw/inline-backgroundLars Bergstrom2014-08-278-375/+155
|\ \ \ | | | | | | | | Add support for backgrounds on inline elements. Fix fixup() by removing it.
| * | | Add support for backgrounds on inline elements. Fix fixup() by removing it.Glenn Watson2014-08-278-375/+155
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The code that managed ranges was buggy - failing on edge cases such as a span within a span. I have refactored the code so that the context information for inline formatting can optionally be stored within a fragment. This seems cleaner to me, and fixes the bugs encountered when making these changes by removing the need for the fixup() functionality (and ranges).
* | | | Merge pull request #3167 from LalehB/masterLars Bergstrom2014-08-272-0/+195
|\ \ \ \ | | | | | | | | | | PowerMeasure and Readme in one commit
| * | | | powerLalehB2014-08-262-0/+195
| | | | |
* | | | | Merge pull request #3145 from wenderen/NamespaceURI.NoneManish Goregaokar2014-08-273-41/+6
|\ \ \ \ \ | | | | | | | | | | | | return null from GetNamespaceURI, not the empty string; r=Manishearth, Ms2ger
| * | | | | return null from GetNamespaceURI, not the empty stringRohan Prinja2014-08-273-41/+6
| | | | | | | | | | | | | | | | | | | | | | | | correctly mark tests
* | | | | | Merge pull request #3168 from Ms2ger/delete_property_by_idJosh Matthews2014-08-272-9/+15
|\ \ \ \ \ \ | | | | | | | | | | | | | | Factor out code to call JS_DeletePropertyById2.
| * | | | | | Factor out code to call JS_DeletePropertyById2.Ms2ger2014-08-272-9/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | I'll need to write the same code again for cross-origin wrappers.
* | | | | | | Merge pull request #3162 from SimonSapin/png-enumJack Moffitt2014-08-275-33/+36
|\ \ \ \ \ \ \ | |_|_|_|_|/ / |/| | | | | | Update to png::Image::pixels as an enum.
| * | | | | | Update to png::Image::pixels as an enum.Simon Sapin2014-08-265-33/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/servo/rust-png/pull/42 This does *not* fix the issue in #3154, but makes it fail!() instead of (maybe?) reading uninitalized memory.
* | | | | | | Enable some of the HTML tests.Ms2ger2014-08-27345-0/+146333
| |/ / / / / |/| | | | |
* | | | | | Merge pull request #3153 from SimonSapin/bit-struct-testsMatt Brubeck2014-08-261-1/+76
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | Add tests for the bit_struct! macro. r=mbrubeck
| * | | | | Add tests for the bit_struct! macro.Simon Sapin2014-08-261-1/+76
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The macro crate, when built with `--test`, now depends on itself (a version of itself built without `--test`). This is a bit unusal, but allows testing a syntax extension. I did not feel like making a new crate just for this, and these tests do not belong in any of the other existing crates.
* | | | | | Remove a .orig file left over from conflict resolution.Simon Sapin2014-08-271-415/+0
| | | | | |
* | | | | | Merge pull request #3110 from SimonSapin/writing-modes-reftestSimon Sapin2014-08-2713-85/+553
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add a basic CSS Writing Modes reftest
| * | | | | | Add a reftest for basic block layout in a vertical writing mode.Simon Sapin2014-08-263-0/+37
| | | | | | |