mirror of
https://github.com/servo/servo.git
synced 2025-06-21 07:38:59 +01:00
This implements the DOM tree accessors that return a HTMLCollection
This commit is contained in:
parent
7911ae5695
commit
8032b17e36
3 changed files with 78 additions and 16 deletions
|
@ -12,6 +12,8 @@ use dom::window::Window;
|
||||||
|
|
||||||
use js::jsapi::{JSObject, JSContext};
|
use js::jsapi::{JSObject, JSContext};
|
||||||
|
|
||||||
|
use servo_util::tree::TreeUtils;
|
||||||
|
|
||||||
use std::libc;
|
use std::libc;
|
||||||
use std::ptr;
|
use std::ptr;
|
||||||
|
|
||||||
|
@ -64,33 +66,27 @@ impl HTMLDocument {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn Images(&self) -> @mut HTMLCollection {
|
pub fn Images(&self) -> @mut HTMLCollection {
|
||||||
let (scope, cx) = self.get_scope_and_cx();
|
self.createHTMLCollection(~"img")
|
||||||
HTMLCollection::new(~[], cx, scope)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn Embeds(&self) -> @mut HTMLCollection {
|
pub fn Embeds(&self) -> @mut HTMLCollection {
|
||||||
let (scope, cx) = self.get_scope_and_cx();
|
self.createHTMLCollection(~"embed")
|
||||||
HTMLCollection::new(~[], cx, scope)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn Plugins(&self) -> @mut HTMLCollection {
|
pub fn Plugins(&self) -> @mut HTMLCollection {
|
||||||
let (scope, cx) = self.get_scope_and_cx();
|
self.Embeds()
|
||||||
HTMLCollection::new(~[], cx, scope)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn Links(&self) -> @mut HTMLCollection {
|
pub fn Links(&self) -> @mut HTMLCollection {
|
||||||
let (scope, cx) = self.get_scope_and_cx();
|
self.createHTMLCollection(~"link")
|
||||||
HTMLCollection::new(~[], cx, scope)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn Forms(&self) -> @mut HTMLCollection {
|
pub fn Forms(&self) -> @mut HTMLCollection {
|
||||||
let (scope, cx) = self.get_scope_and_cx();
|
self.createHTMLCollection(~"form")
|
||||||
HTMLCollection::new(~[], cx, scope)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn Scripts(&self) -> @mut HTMLCollection {
|
pub fn Scripts(&self) -> @mut HTMLCollection {
|
||||||
let (scope, cx) = self.get_scope_and_cx();
|
self.createHTMLCollection(~"script")
|
||||||
HTMLCollection::new(~[], cx, scope)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn Close(&self, _rv: &mut ErrorResult) {
|
pub fn Close(&self, _rv: &mut ErrorResult) {
|
||||||
|
@ -163,13 +159,11 @@ impl HTMLDocument {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn Anchors(&self) -> @mut HTMLCollection {
|
pub fn Anchors(&self) -> @mut HTMLCollection {
|
||||||
let (scope, cx) = self.get_scope_and_cx();
|
self.createHTMLCollection(~"a")
|
||||||
HTMLCollection::new(~[], cx, scope)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn Applets(&self) -> @mut HTMLCollection {
|
pub fn Applets(&self) -> @mut HTMLCollection {
|
||||||
let (scope, cx) = self.get_scope_and_cx();
|
self.createHTMLCollection(~"applet")
|
||||||
HTMLCollection::new(~[], cx, scope)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn Clear(&self) {
|
pub fn Clear(&self) {
|
||||||
|
@ -178,6 +172,33 @@ impl HTMLDocument {
|
||||||
pub fn GetAll(&self, _cx: *JSContext, _rv: &mut ErrorResult) -> *libc::c_void {
|
pub fn GetAll(&self, _cx: *JSContext, _rv: &mut ErrorResult) -> *libc::c_void {
|
||||||
ptr::null()
|
ptr::null()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn createHTMLCollection(&self, elem_name: ~str) -> @mut HTMLCollection {
|
||||||
|
let (scope, cx) = self.get_scope_and_cx();
|
||||||
|
let mut elements = ~[];
|
||||||
|
let _ = for self.parent.root.traverse_preorder |child| {
|
||||||
|
if child.is_element() {
|
||||||
|
do child.with_imm_element |elem| {
|
||||||
|
match elem_name {
|
||||||
|
~"link" => {
|
||||||
|
if elem.tag_name == ~"a" || elem.tag_name == ~"area" {
|
||||||
|
match elem.get_attr("href") {
|
||||||
|
Some(_val) => elements.push(child),
|
||||||
|
None() => ()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_ => {
|
||||||
|
if elem.tag_name == elem_name {
|
||||||
|
elements.push(child);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
HTMLCollection::new(elements, cx, scope)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl CacheableWrapper for HTMLDocument {
|
impl CacheableWrapper for HTMLDocument {
|
||||||
|
@ -196,3 +217,4 @@ impl BindingObject for HTMLDocument {
|
||||||
self.parent.GetParentObject(cx)
|
self.parent.GetParentObject(cx)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,5 +7,10 @@
|
||||||
<div id="second">ggg</div>
|
<div id="second">ggg</div>
|
||||||
<span id="third" name="test">hhhhhhhh</span>
|
<span id="third" name="test">hhhhhhhh</span>
|
||||||
<div id="fourth">iiiiiiiiiiiiiiiiiii</div>
|
<div id="fourth">iiiiiiiiiiiiiiiiiii</div>
|
||||||
|
<a href="http://www.mozilla.org"></a>
|
||||||
|
<img src="test.jpg"/>
|
||||||
|
<embed></embed>
|
||||||
|
<form></form>
|
||||||
|
<applet></applet>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -60,6 +60,41 @@ window.alert(tags[0].tagName);
|
||||||
window.alert(tags[1]);
|
window.alert(tags[1]);
|
||||||
window.alert(tags[1].tagName);
|
window.alert(tags[1].tagName);
|
||||||
window.alert(tags[2]);
|
window.alert(tags[2]);
|
||||||
|
let tags = document.links;
|
||||||
|
window.alert(tags);
|
||||||
|
window.alert(tags.length);
|
||||||
|
window.alert(tags[0]);
|
||||||
|
window.alert(tags[0].tagName);
|
||||||
|
let tags = document.images;
|
||||||
|
window.alert(tags);
|
||||||
|
window.alert(tags.length);
|
||||||
|
window.alert(tags[0]);
|
||||||
|
window.alert(tags[0].tagName);
|
||||||
|
let tags = document.embeds;
|
||||||
|
window.alert(tags);
|
||||||
|
window.alert(tags.length);
|
||||||
|
window.alert(tags[0]);
|
||||||
|
window.alert(tags[0].tagName);
|
||||||
|
let tags = document.plugins;
|
||||||
|
window.alert(tags);
|
||||||
|
window.alert(tags.length);
|
||||||
|
window.alert(tags[0]);
|
||||||
|
window.alert(tags[0].tagName);
|
||||||
|
let tags = document.forms;
|
||||||
|
window.alert(tags);
|
||||||
|
window.alert(tags.length);
|
||||||
|
window.alert(tags[0]);
|
||||||
|
window.alert(tags[0].tagName);
|
||||||
|
let tags = document.scripts;
|
||||||
|
window.alert(tags);
|
||||||
|
window.alert(tags.length);
|
||||||
|
window.alert(tags[0]);
|
||||||
|
window.alert(tags[0].tagName);
|
||||||
|
let tags = document.applets;
|
||||||
|
window.alert(tags);
|
||||||
|
window.alert(tags.length);
|
||||||
|
window.alert(tags[0]);
|
||||||
|
window.alert(tags[0].tagName);
|
||||||
|
|
||||||
window.alert("DOMParser:");
|
window.alert("DOMParser:");
|
||||||
window.alert(DOMParser);
|
window.alert(DOMParser);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue