You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>For example, in an editing system that supports multiple users, one user may suggest a change, and another user would be responsible
8403
+
for accepting or rejecting the suggestion.</p>
8404
+
<p>Authors MUST ensure that a <code>suggestion</code> contains either one <rref>insertion</rref> child or one <rref>deletion</rref> child or ensure that it contains two children where one is an <rref>insertion</rref> and the other is a <rref>deletion</rref>. Authors MUST ensure a <code>suggestion</code> does not contain any other children.</p>
8405
+
<p>Authors MAY use <pref>aria-details</pref> or <pref>aria-description</pref> to associate the <code>suggestion</code> with related information such as comments, authoring info, and time stamps.</p>
8406
+
<pre class="example highlight">
8407
+
<p>
8408
+
The best pet is a
8409
+
<span role="suggestion">
8410
+
<span role="deletion">cat</span>
8411
+
<span role="insertion">dog</span>
8412
+
</span>
8413
+
</p>
8414
+
</pre>
8415
+
<p>When a suggestion is accepted, authors SHOULD remove the <code>suggestion</code> role, indicating that the proposed revision has been made.
8416
+
After the <code>suggestion</code> role is removed, child <rref>insertion</rref> and <rref>deletion</rref> elements can either be retained to document the revision or replaced with the revised content.
0 commit comments