diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-07-17 07:10:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-17 07:10:11 -0700 |
commit | 38f4ae80c4b456b89ee33543c8c6699501696c9c (patch) | |
tree | ad20be4e93d1db0960c87749a5e6f6cdafc8db55 /components/layout_thread/lib.rs | |
parent | 9d30e5b4e0fe9ccdfcd47d5134b5fbfba2e68096 (diff) | |
parent | 94d631c1f4272ed2a45d5257cf5c616ec3e8eec5 (diff) | |
download | servo-38f4ae80c4b456b89ee33543c8c6699501696c9c.tar.gz servo-38f4ae80c4b456b89ee33543c8c6699501696c9c.zip |
Auto merge of #17739 - jdm:no-vendor-prefixed-errors, r=emilio
Suppress CSS parser errors for vendor-prefixed properties.
This matches the behaviour of Gecko's CSS parser.
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes fix #17736
- [X] There are tests for these changes
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/17739)
<!-- Reviewable:end -->
Diffstat (limited to 'components/layout_thread/lib.rs')
-rw-r--r-- | components/layout_thread/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/layout_thread/lib.rs b/components/layout_thread/lib.rs index fea91c164b7..b8436ce0bbf 100644 --- a/components/layout_thread/lib.rs +++ b/components/layout_thread/lib.rs @@ -133,7 +133,6 @@ use style::stylist::{ExtraStyleData, Stylist}; use style::thread_state; use style::timer::Timer; use style::traversal::{DomTraversal, TraversalDriver, TraversalFlags}; -use style::values::CompactCowStr; /// Information needed by the layout thread. pub struct LayoutThread { @@ -714,7 +713,7 @@ impl LayoutThread { Msg::RegisterPaint(name, mut properties, painter) => { debug!("Registering the painter"); let properties = properties.drain(..) - .filter_map(|name| PropertyId::parse(CompactCowStr::from(&*name)).ok().map(|id| (name.clone(), id))) + .filter_map(|name| PropertyId::parse(&*name).ok().map(|id| (name.clone(), id))) .filter(|&(_, ref id)| id.as_shorthand().is_err()) .collect(); let registered_painter = RegisteredPainter { |