aboutsummaryrefslogtreecommitdiff
path: root/Web.md
diff options
context:
space:
mode:
authorJoseph Richey <joerichey@google.com>2017-11-15 08:48:14 -0800
committerJF Bastien <github@jfbastien.com>2017-11-15 09:48:14 -0700
commite2be77eaac770268a4c22fb09c6f648de7b9b6b8 (patch)
treeba99bc504cd96f6471147582e08a5e19ebd8312d /Web.md
parent71c97d9081ac6d64497d586e8f45c8145ed3f86e (diff)
downloadnanowasm-design-e2be77eaac770268a4c22fb09c6f648de7b9b6b8.tar.gz
Fixup links to future features (#1157)
This link standardizes how all the other design pages will refer to future features (either in `FutureFeatures.md` or in a tracking issue). All links to these upcoming features now use references at the bottom of the doc page (as opposed to inline links or references). Note that this change makes it very easy for the doc links to be updated when a tracking issue is started. As all the references have a standard format; a simple find/replace script will get everything. This commit also makes sure that references now point to a tracking issue if one exists. Note that this means a future CL can now delete some of the unnecessary sections from `FutureFeatures.md`. The only visible change from this commit is that certain broken links are now fixed, or links pointing to a doc section now point to the correct tracking issue.
Diffstat (limited to 'Web.md')
-rw-r--r--Web.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/Web.md b/Web.md
index b59f5ae..c908d68 100644
--- a/Web.md
+++ b/Web.md
@@ -308,7 +308,7 @@ distribution networks and to implement [dynamic linking](DynamicLinking.md).
## SIMD
-Once [SIMD is supported](FutureFeatures.md#fixed-width-simd) WebAssembly would:
+Once [SIMD is supported][future simd] WebAssembly would:
* Be statically typed analogous to [SIMD.js-in-asm.js][];
* Reuse specification of operation semantics (with TC39);
@@ -316,10 +316,13 @@ Once [SIMD is supported](FutureFeatures.md#fixed-width-simd) WebAssembly would:
## GC
-Once [GC is supported](GC.md), WebAssembly code would be able to reference
+Once [GC is supported][future garbage collection], WebAssembly code would be able to reference
and access JavaScript, DOM, and general WebIDL-defined objects.
[same-origin policy]: https://www.w3.org/Security/wiki/Same_Origin_Policy
[cross-origin resource sharing (CORS)]: https://www.w3.org/TR/cors/
[subresource integrity]: https://www.w3.org/TR/SRI/
[SIMD.js-in-asm.js]: http://discourse.specifiction.org/t/request-for-comments-simd-js-in-asm-js
+
+[future simd]: https://github.com/WebAssembly/design/issues/1075
+[future garbage collection]: https://github.com/WebAssembly/design/issues/1079