Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Unified Diff: LayoutTests/svg/custom/fragment-navigation-02.html

Issue 249313005: Allow fragment navigation from <svg:a> (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: More test tweaks. Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/svg/custom/fragment-navigation-02.html
diff --git a/LayoutTests/svg/custom/fragment-navigation-02.html b/LayoutTests/svg/custom/fragment-navigation-02.html
new file mode 100644
index 0000000000000000000000000000000000000000..654c2cb4ef1f8129185114c6df34934429a286cc
--- /dev/null
+++ b/LayoutTests/svg/custom/fragment-navigation-02.html
@@ -0,0 +1,50 @@
+<!DOCTYPE html>
+<style>
+html, body {
+ margin: 0;
+}
+.spacer {
+ background-color: blue;
+ width: 100px;
+ height: 10000px;
+}
+#test {
+ background-color: green;
+ width: 100px;
+ height: 100px;
+}
+</style>
+<div>
+ <p>Clicking the red rectangle should attempt a navigation to the fragment identifier.</p>
+ <svg width="300" height="200" onload="runTest()">
+ <a xlink:href="#test">
+ <rect width="100" height="100" fill="red"/>
+ </a>
+ </svg>
+</div>
+<div class="spacer"></div>
+<div id="test"></div>
+<div class="spacer"></div>
+<script>
+if (window.testRunner) {
+ testRunner.waitUntilDone();
+ testRunner.dumpAsText();
+}
+
+function runTest() {
+ var evt = document.createEvent("MouseEvents");
+ var oldScrollOffset = window.scrollY;
+ evt.initMouseEvent("click", true, true, window,
+ 0, 0, 0, 0, 0, false, false, false, false, 0, null);
+ document.querySelector('a').dispatchEvent(evt);
+ window.setTimeout(function checkNavigation() {
+ var hasHash = location.hash === '#test';
+ var didScrollDown = oldScrollOffset < window.scrollY;
+ var didNotScrollToDocBottom = window.scrollY + window.innerHeight < document.body.offsetHeight;
+ var result = hasHash && didScrollDown && didNotScrollToDocBottom ? 'PASS' : 'FAIL';
+ document.documentElement.appendChild(document.createTextNode(result));
+ if (window.testRunner)
+ testRunner.notifyDone();
+ }, 0);
+}
+</script>
« no previous file with comments | « LayoutTests/svg/custom/fragment-navigation-01-expected.txt ('k') | LayoutTests/svg/custom/fragment-navigation-02-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698