Ms2ger
ce9e5ae213
Make some of Node's members private.
2014-09-03 13:02:17 +02:00
Patrick Walton
ec6f83077b
Merge pull request #3195 from glennw/image-format
...
Fix task failure when loading wikipedia.
2014-09-03 00:35:20 -07:00
Glenn Watson
e4e1c71d48
Add support for borders on inline elements.
...
Fix ahem reftests on mac, by disabling text AA in reftest mode.
Also fix precision issues in font metrics to correct height
and baseline calculations.
2014-09-03 07:16:17 +10:00
Josh Matthews
cb559efd4e
Merge pull request #3173 from mrobinson/typed-units-1
...
Start using more typed units in the compositor
2014-09-02 15:14:37 -04:00
Josh Matthews
bb79f49bfc
Merge pull request #3196 from Ms2ger/script
...
Move the script type and language checks into HTMLScriptElement.
2014-09-02 04:13:50 -04:00
Ms2ger
ee39685051
Move the script type and language checks into HTMLScriptElement.
...
This is IMO a more sensible place for them to live, and prepares for the
demise of hubbub_html_parser.rs, as we move to html5ever.
2014-09-02 09:00:41 +02:00
Glenn Watson
78ef16bfae
Fix task failure when loading wikipedia.
...
There is still an issue with alpha display, so there is
likely a problem elsewhere, but this at least allows the
page to load for now (ref #2554 ).
2014-09-02 15:58:38 +10:00
glennw
a5965442b5
Merge pull request #3194 from glennw/android-build
...
Revert syntax extension for now, as it causes issues with cross compiling for android.
2014-09-02 09:20:11 +10:00
Glenn Watson
c0d08a6c2e
Revert "Move PropertyBitField to a syntax extension."
...
This reverts commit d6002a0a50
.
2014-09-02 07:58:17 +10:00
Glenn Watson
cc03e4f9e2
Revert "fixup! Move PropertyBitField to a syntax extension."
...
This reverts commit 653f257029
.
2014-09-02 07:58:08 +10:00
Glenn Watson
a8b7b193f5
Revert "Add tests for the bit_struct! macro."
...
This reverts commit dd44a7d24a
.
2014-09-02 07:57:57 +10:00
glennw
9284e44328
Merge pull request #3192 from glennw/disable-android-ssl
...
Disable ssl on android as openssl needs to be added to build system.
2014-09-01 13:03:16 +10:00
Glenn Watson
4952bee0f7
Disable ssl on android as openssl needs to be added to build system.
2014-09-01 11:27:13 +10:00
Manish Goregaokar
b79432d98e
Merge pull request #3189 from gilles-leblanc/issue-3157
...
Share code between HTMLScriptElement:Text and Node:GetTextContent; r=Manishearth
2014-08-31 20:11:05 +05:30
Gilles Leblanc
d12243df0d
Share code between HTMLScriptElement:Text and Node:GetTextContent
...
Added a function in Node called collect_text_contents which is called
from both places.
Fixes #3157
2014-08-30 20:34:08 -04:00
Ms2ger
8af758f591
Merge pull request #3186 from wenderen/Window.frames
...
implement window.frames; r=Manishearth
2014-08-30 09:12:17 +02:00
Rohan Prinja
fd09df71a4
implement window.frames
2014-08-30 02:25:23 +05:30
Josh Matthews
567d219342
Merge pull request #3174 from Aaron1011/attrlist-namednodemap
...
Rename AttrList to NamedNodeMap
2014-08-29 16:15:59 -04:00
Martin Robinson
678ab5c963
Merge pull request #3179 from mrobinson/iframes
...
Remove RenderListener::set_layer_clip_rect
2014-08-29 12:53:54 -07:00
Aaron Hill
3a56a69581
Rename AttrList to NamedNodeMap
...
This fixes issue #3135
2014-08-29 14:53:01 -04:00
Simon Sapin
db05417a25
Merge pull request #3181 from SimonSapin/sideways-text
...
Sideways text
2014-08-29 17:51:26 +01:00
Simon Sapin
80704aeabd
Implement sideways text.
2014-08-29 17:50:56 +01:00
Simon Sapin
db80b76d0a
Make text decorations be independent display items.
...
The goal it to avoid having too much layout logic (which gets more complex in vertical text) in gfx code.
2014-08-29 17:50:51 +01:00
Josh Matthews
e40f54bfef
Merge pull request #3183 from ChrisParis/callback-return
...
Support callback return types in codegen
2014-08-29 11:08:49 -04:00
Manish Goregaokar
343c3124b2
Merge pull request #3184 from Ms2ger/disable-workers-same-origin-test
...
Disable same-origin.html for intermittent failures (fixes #3180 ).; r=jgraham
2014-08-29 18:06:14 +05:30
Ms2ger
e0a36f3292
Disable same-origin.html for intermittent failures ( fixes #3180 ).
...
We don't currently implement the same-origin restriction at all, so there's
little point in running this test.
2014-08-29 12:22:20 +02:00
Simon Sapin
1f2c5c0bcb
Merge pull request #3178 from SimonSapin/canvas-crate
...
Add a canvas create, break script’s dependency on gfx.
2014-08-29 09:14:07 +01:00
Manish Goregaokar
ad6d22b2bf
Merge pull request #3141 from Manishearth/fetch-stuff
...
Some more Fetch and CORS Cache stuff; r=jdm
2014-08-29 12:43:01 +05:30
Chris Paris
b2b3fbc6e0
Support callback return types in codegen
2014-08-28 17:03:34 -10:00
Simon Sapin
aea6f849a0
Merge pull request #3170 from SimonSapin/trait-object-transmute
...
Transmute std::raw::TraitObject rather than (some) custom tuples/structs
2014-08-29 00:35:55 +01:00
Matt Brubeck
49765d2bf5
Merge pull request #3147 from mbrubeck/tagname-upper
...
Uppercase element.tagName for HTML elements only r=Ms2ger
2014-08-28 15:27:45 -07:00
Matt Brubeck
e01569834c
Uppercase element.tagName for HTML elements only
...
Fixes #3146
2014-08-28 15:25:04 -07:00
Bryan Bell
69a2dbc868
Remove RenderListener::set_layer_clip_rect
...
It is currently unused.
2014-08-28 11:35:15 -07:00
Ms2ger
9060772af9
Merge pull request #3177 from Ms2ger/ConstantSpec
...
Introduce ConstantSpec::get_value; r=jdm
2014-08-28 19:19:41 +02:00
Ms2ger
f925343552
Introduce ConstantSpec::get_value.
...
I'll need it for cross-origin wrappers as well.
2014-08-28 19:19:22 +02:00
Simon Sapin
aa1a5c479a
Add a canvas create, break script’s dependency on gfx.
...
The build time on my laptop after touching gfx goes from 1m37s ot 46s.
2014-08-28 17:15:39 +01:00
Simon Sapin
99909de826
Transmute std::raw::TraitObject rather than (some) custom tuples/structs.
...
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.
2014-08-28 16:18:04 +01:00
Ms2ger
14d596c1bc
Merge pull request #3175 from Ms2ger/propertyhooks
...
Introduce the NativePropertyHooks struct; r=jdm
2014-08-28 17:12:12 +02:00
Ms2ger
e7faa147a5
Merge pull request #3176 from Manishearth/more-macros
...
Use macro getters for input elements: r=Ms2ger
2014-08-28 16:21:15 +02:00
Ms2ger
cadc84319a
Introduce the NativePropertyHooks struct.
...
This will be required for the cross-origin wrapper work.
2014-08-28 11:39:02 +02:00
Manish Goregaokar
8f47259d6e
Use macro getters for input elements
2014-08-28 14:06:56 +05:30
Ms2ger
be538bcd23
Merge pull request #3169 from Ms2ger/update-manifest
...
Update MANIFEST.json to current web-platform-tests; r=jdm
2014-08-28 08:51:07 +02:00
Martin Robinson
cae18322e7
Start using more typed units in the compositor
...
Now that rust-layers is starting to support typed units, we can use
them more thoroughly in the compositor. This is a step toward removing
as many untyped units as possible.
2014-08-27 15:28:46 -07:00
Simon Sapin
31cc50f2eb
Don’t show the githib token in Travis log
2014-08-27 19:51:19 +01:00
Simon Sapin
da146d1696
Renew the auth token for pushing to github pages
...
It’s been leaked in a Travis log
2014-08-27 19:48:41 +01:00
Matt Brubeck
9eba9b668a
Fix comment syntax
2014-08-27 11:46:05 -07:00
Manish Goregaokar
d326ba0377
Some docs
2014-08-27 23:53:15 +05:30
Matt Brubeck
2aef2c3e58
Merge pull request #3163 from mbrubeck/br
...
Fix `<br>` support [r=SimonSapin]
2014-08-27 10:01:26 -07:00
Matt Brubeck
024ce539fd
Fix <br> support
2014-08-27 10:00:23 -07:00
Ms2ger
5a6937f2f9
Update MANIFEST.json to current web-platform-tests.
...
This was forgotten in the last update. The README is also updated as a
reminder for future updates.
2014-08-27 17:52:25 +02:00