<!-- Please describe your changes on the following line: -->
Image Maps: (Part 1) Implemented support for parsing coord attribute to a shape object.
Implemented a hit_test method to see if a point is within the area. Tests for constructors and hit_test included
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [ ] `./mach build -d` does not report any errors
- [ ] `./mach test-tidy` does not report any errors
- [ ] These changes fix #__ (github issue number if applicable).
<!-- Either: -->
- [ ] There are tests for these changes OR
- [ ] These changes do not require tests because _____
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
… object in HTMLAreaElement
Source-Repo: https://github.com/servo/servo
Source-Revision: f6940f686cce249626e4fe32cc0fe5e0dcd40dd6
73 lines
1.8 KiB
Rust
73 lines
1.8 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
pub use dom::bindings::str::{ByteString, DOMString};
|
|
pub use dom::headers::normalize_value;
|
|
|
|
// For compile-fail tests only.
|
|
pub use dom::bindings::cell::DOMRefCell;
|
|
pub use dom::bindings::js::JS;
|
|
pub use dom::node::Node;
|
|
|
|
pub mod area {
|
|
pub use dom::htmlareaelement::{Area, Shape};
|
|
}
|
|
|
|
pub mod size_of {
|
|
use dom::characterdata::CharacterData;
|
|
use dom::element::Element;
|
|
use dom::eventtarget::EventTarget;
|
|
use dom::htmldivelement::HTMLDivElement;
|
|
use dom::htmlelement::HTMLElement;
|
|
use dom::htmlspanelement::HTMLSpanElement;
|
|
use dom::node::Node;
|
|
use dom::text::Text;
|
|
use layout_wrapper::{ServoLayoutElement, ServoLayoutNode, ServoThreadSafeLayoutNode};
|
|
use std::mem::size_of;
|
|
|
|
pub fn CharacterData() -> usize {
|
|
size_of::<CharacterData>()
|
|
}
|
|
|
|
pub fn Element() -> usize {
|
|
size_of::<Element>()
|
|
}
|
|
|
|
pub fn EventTarget() -> usize {
|
|
size_of::<EventTarget>()
|
|
}
|
|
|
|
pub fn HTMLDivElement() -> usize {
|
|
size_of::<HTMLDivElement>()
|
|
}
|
|
|
|
pub fn HTMLElement() -> usize {
|
|
size_of::<HTMLElement>()
|
|
}
|
|
|
|
pub fn HTMLSpanElement() -> usize {
|
|
size_of::<HTMLSpanElement>()
|
|
}
|
|
|
|
pub fn Node() -> usize {
|
|
size_of::<Node>()
|
|
}
|
|
|
|
pub fn SendElement() -> usize {
|
|
size_of::<::style::dom::SendElement<ServoLayoutElement>>()
|
|
}
|
|
|
|
pub fn SendNode() -> usize {
|
|
size_of::<::style::dom::SendNode<ServoLayoutNode>>()
|
|
}
|
|
|
|
pub fn ServoThreadSafeLayoutNode() -> usize {
|
|
size_of::<ServoThreadSafeLayoutNode>()
|
|
}
|
|
|
|
pub fn Text() -> usize {
|
|
size_of::<Text>()
|
|
}
|
|
}
|