diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-09-10 14:38:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-10 12:38:56 +0000 |
commit | a9d37cb85ac2c55fc630fccffe1ba60ff00f555b (patch) | |
tree | e072f86743d0ee71f908135cb63484f84c8370f4 /third_party/webrender/debugger/src/components/NavMenu.vue | |
parent | c079acb3c31e695e9f16b96b9bd61b2a1c182796 (diff) | |
download | servo-a9d37cb85ac2c55fc630fccffe1ba60ff00f555b.tar.gz servo-a9d37cb85ac2c55fc630fccffe1ba60ff00f555b.zip |
Upgrade WebRender to e491e1ae637b2eed1e7195855d88357e5eb3ddf9 (#30323)
* Upgrade vendored version of WebRender
* Patch WebRender: upgrade version of gleam
* Restore hit testing implementation
* Fix WebRender warnings
* Adapt Servo to new WebRender
* Update results
* Add a workaround for #30313
This slightly expands text boundaries in order to take into account the
fact that layout isn't measuring glyph boundaries.
Diffstat (limited to 'third_party/webrender/debugger/src/components/NavMenu.vue')
-rw-r--r-- | third_party/webrender/debugger/src/components/NavMenu.vue | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/third_party/webrender/debugger/src/components/NavMenu.vue b/third_party/webrender/debugger/src/components/NavMenu.vue deleted file mode 100644 index 5a7cc3512a4..00000000000 --- a/third_party/webrender/debugger/src/components/NavMenu.vue +++ /dev/null @@ -1,33 +0,0 @@ -<template> - <aside class="menu"> - <p class="menu-label"> - Pages - </p> - <ul class="menu-list"> - <li><a @click="setPage('options')" :class="{ 'is-active': page == 'options' }">Debug Options</a></li> - <li><a @click="setPage('passes')" :class="{ 'is-active': page == 'passes' }">Passes</a></li> - <li><a @click="setPage('render_tasks')" :class="{ 'is-active': page == 'render_tasks' }">Render Tasks</a></li> - <li><a @click="setPage('documents')" :class="{ 'is-active': page == 'documents' }">Documents</a></li> - <li><a @click="setPage('clip_scroll_tree')" v-bind:class="{ 'is-active': page == 'clip_scroll_tree' }">Clip-Scroll Tree</a></li> - <li><a @click="setPage('screenshot')" v-bind:class="{ 'is-active': page == 'screenshot' }">Screenshot</a></li> - </ul> - </aside> -</template> - -<script> -export default { - methods: { - setPage(name) { - this.$store.commit('setPage', name); - }, - }, - computed: { - page() { - return this.$store.state.page; - } - }, -} -</script> - -<style> -</style> |