aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/document.rs
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno.d@partner.samsung.com>2014-08-14 10:27:04 -0400
committerBruno de Oliveira Abinader <bruno.d@partner.samsung.com>2014-08-14 10:27:04 -0400
commit3b916d4e303c0cadaf0342b66dade8eb33a3a508 (patch)
tree31672b282685c147c9bc2e3adfa8ea7548a0b037 /src/components/script/dom/document.rs
parent66eb73ca444a535e8ac584f3faf0615b501c708a (diff)
downloadservo-3b916d4e303c0cadaf0342b66dade8eb33a3a508.tar.gz
servo-3b916d4e303c0cadaf0342b66dade8eb33a3a508.zip
Removed comment as issue #1847 is now fixed.
Diffstat (limited to 'src/components/script/dom/document.rs')
-rw-r--r--src/components/script/dom/document.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/components/script/dom/document.rs b/src/components/script/dom/document.rs
index f7ce4c317cd..69d8abaf75f 100644
--- a/src/components/script/dom/document.rs
+++ b/src/components/script/dom/document.rs
@@ -666,8 +666,6 @@ impl<'a> DocumentMethods for JSRef<'a, Document> {
fn Images(&self) -> Temporary<HTMLCollection> {
let window = self.window.root();
-
- // FIXME: https://github.com/mozilla/servo/issues/1847
struct ImagesFilter;
impl CollectionFilter for ImagesFilter {
fn filter(&self, elem: &JSRef<Element>, _root: &JSRef<Node>) -> bool {
@@ -680,8 +678,6 @@ impl<'a> DocumentMethods for JSRef<'a, Document> {
fn Embeds(&self) -> Temporary<HTMLCollection> {
let window = self.window.root();
-
- // FIXME: https://github.com/mozilla/servo/issues/1847
struct EmbedsFilter;
impl CollectionFilter for EmbedsFilter {
fn filter(&self, elem: &JSRef<Element>, _root: &JSRef<Node>) -> bool {
@@ -693,12 +689,10 @@ impl<'a> DocumentMethods for JSRef<'a, Document> {
}
fn Plugins(&self) -> Temporary<HTMLCollection> {
- // FIXME: https://github.com/mozilla/servo/issues/1847
self.Embeds()
}
fn Links(&self) -> Temporary<HTMLCollection> {
- // FIXME: https://github.com/mozilla/servo/issues/1847
if self.links.get().is_none() {
let window = self.window.root();
let root = NodeCast::from_ref(self);
@@ -710,8 +704,6 @@ impl<'a> DocumentMethods for JSRef<'a, Document> {
fn Forms(&self) -> Temporary<HTMLCollection> {
let window = self.window.root();
-
- // FIXME: https://github.com/mozilla/servo/issues/1847
struct FormsFilter;
impl CollectionFilter for FormsFilter {
fn filter(&self, elem: &JSRef<Element>, _root: &JSRef<Node>) -> bool {
@@ -724,8 +716,6 @@ impl<'a> DocumentMethods for JSRef<'a, Document> {
fn Scripts(&self) -> Temporary<HTMLCollection> {
let window = self.window.root();
-
- // FIXME: https://github.com/mozilla/servo/issues/1847
struct ScriptsFilter;
impl CollectionFilter for ScriptsFilter {
fn filter(&self, elem: &JSRef<Element>, _root: &JSRef<Node>) -> bool {
@@ -738,8 +728,6 @@ impl<'a> DocumentMethods for JSRef<'a, Document> {
fn Anchors(&self) -> Temporary<HTMLCollection> {
let window = self.window.root();
-
- // FIXME: https://github.com/mozilla/servo/issues/1847
struct AnchorsFilter;
impl CollectionFilter for AnchorsFilter {
fn filter(&self, elem: &JSRef<Element>, _root: &JSRef<Node>) -> bool {