Fix #59047 - fix SVG fresh specs links#59066
Conversation
schenney-chromium
left a comment
There was a problem hiding this comment.
Github's interface for reviewing svg files is not good.
I presume this was automated. Was it?
Regardless, I do not detect any problems. The Checks failures for Chrome and Firefox appear to be pre-existing.
Search and replace for most of it. but let's see the error for chrome. so this is this file: <!DOCTYPE HTML>
<link rel="help" href="https://w3c.github.io/svgwg/svg2-draft/coords.html#InterfaceSVGTransform">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<svg width="200" height="100" xmlns="http://www.w3.org/2000/svg">
<rect x="10" y="10" width="180" height="80" fill="red" />
</svg>
<script>
test(() => {
const rectElement = document.querySelector("rect");
// Apply single parameter translate - should behave as translate(100, 0)
rectElement.setAttribute("transform", "translate(100)");
assert_equals(rectElement.getAttribute('transform'), "translate(100)");
assert_equals(rectElement.transform.baseVal.getItem(0).matrix.e, 100);
assert_equals(rectElement.transform.baseVal.getItem(0).matrix.f, 0);
}, 'Dynamic update of transform; setAttribute()');
</script>
</body>
</html>and the only thing changed there is the link diff --git a/svg/coordinate-systems/transform-translate-single-parameter.html b/svg/coordinate-systems/transform-translate-single-parameter.html
index 880d65e353..26babbc627 100644
--- a/svg/coordinate-systems/transform-translate-single-parameter.html
+++ b/svg/coordinate-systems/transform-translate-single-parameter.html
@@ -1,5 +1,5 @@
<!DOCTYPE HTML>
-<link rel="help" href="https://svgwg.org/svg2-draft/coords.html#InterfaceSVGTransform">
+<link rel="help" href="https://w3c.github.io/svgwg/svg2-draft/coords.html#InterfaceSVGTransform">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>so yes pre-existing bot failures not my change. For firefox this is on a different file, which seems a failure on the results, unrelated to my change again. :) |
schenney-chromium
left a comment
There was a problem hiding this comment.
Looks good. Chrome still report 9/10 passing 1/10 failing but the reported failure type is different. I find this rather odd but I agree seems to be unrelated to anything you've changed.
|
How do we merge this? |
Uh oh! Looks like an error!Client ID static/taskcluster/github does not have sufficient scopes and is missing the following scopes: This request requires the client to satisfy the following scope expression:
|
Uh oh! Looks like an error!Client ID static/taskcluster/github does not have sufficient scopes and is missing the following scopes: This request requires the client to satisfy the following scope expression:
|
The domain name doesn't host anymore the fresh version of the SVG WG specifications.
This fixes the links to the current version of the spec and to avoid people double checking prose that would be eventually misleading with recent spec changes.