aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom
diff options
context:
space:
mode:
authoryvt <i@yvt.jp>2021-07-12 00:02:28 +0900
committeryvt <i@yvt.jp>2021-07-12 00:02:28 +0900
commitbbb2cc42fe74fdaf9dfa296f018b04b1c3095439 (patch)
tree672602aadddfbe3a38580eda5a2aa3b72b2a6997 /components/script/dom
parent5959c2ef9b343edc5562f4efee2877334672e841 (diff)
downloadservo-bbb2cc42fe74fdaf9dfa296f018b04b1c3095439.tar.gz
servo-bbb2cc42fe74fdaf9dfa296f018b04b1c3095439.zip
fix(script): remove debug printing
Diffstat (limited to 'components/script/dom')
-rw-r--r--components/script/dom/dissimilaroriginwindow.rs1
-rw-r--r--components/script/dom/window.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/components/script/dom/dissimilaroriginwindow.rs b/components/script/dom/dissimilaroriginwindow.rs
index bf8337cdfbe..079dcfa71fd 100644
--- a/components/script/dom/dissimilaroriginwindow.rs
+++ b/components/script/dom/dissimilaroriginwindow.rs
@@ -90,7 +90,6 @@ impl DissimilarOriginWindowMethods for DissimilarOriginWindow {
// https://html.spec.whatwg.org/multipage/#dom-frames
fn Frames(&self) -> DomRoot<WindowProxy> {
- println!("calling cross origin frames");
self.window_proxy()
}
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs
index b6d2c114388..7e36c8086fb 100644
--- a/components/script/dom/window.rs
+++ b/components/script/dom/window.rs
@@ -935,7 +935,6 @@ impl WindowMethods for Window {
// https://html.spec.whatwg.org/multipage/#dom-frames
fn Frames(&self) -> DomRoot<WindowProxy> {
- println!("frames!");
self.window_proxy()
}