diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-07-15 13:55:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-15 13:55:33 -0400 |
commit | 005320c08c9dc0a87ada445f66549c2140891975 (patch) | |
tree | 762c41507b3a9812f5d60daf61bcd2948ddbb934 /components/script/dom/mod.rs | |
parent | b867e25dfbbf2f3d143a50bd8b8df401f39ad91f (diff) | |
parent | 62f0785c2c042b809400c704eda7a76bae954b5a (diff) | |
download | servo-005320c08c9dc0a87ada445f66549c2140891975.tar.gz servo-005320c08c9dc0a87ada445f66549c2140891975.zip |
Auto merge of #23203 - iulianR:22828, r=jdm
Implement PerformanceNavigation interface
<!-- Please describe your changes on the following line: -->
This is my first attempt. Please let me know if I should change anything.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes fix #22828 (GitHub issue number if applicable)
<!-- Either: -->
- [ ] There are tests for these changes OR
- [x] These changes do not require tests because **not sure**
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
<!-- 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/23203)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/mod.rs')
-rw-r--r-- | components/script/dom/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs index d20b68c92b7..0a654f93c57 100644 --- a/components/script/dom/mod.rs +++ b/components/script/dom/mod.rs @@ -428,6 +428,7 @@ pub mod performance; pub mod performanceentry; pub mod performancemark; pub mod performancemeasure; +pub mod performancenavigation; pub mod performancenavigationtiming; pub mod performanceobserver; pub mod performanceobserverentrylist; |