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
'<ul><li>Here we can analyze the render times of our app</li> <li>This is the current series of state changes within our app</li> <li>Mouse over the bargraph elements for details on each specific component</li></ul>',
207
206
position: 'top',
208
207
},
209
-
{
210
-
title: 'Saving Series & Actions',
211
-
element: '.save-series-button',
212
-
intro: '<ul><li>Click here to save your current series data</li></ul>',
213
-
position: 'top',
214
-
},
215
-
{
216
-
title: 'Saving Series & Actions',
217
-
element: '#seriesname',
218
-
intro: '<ul><li>We can now give our series a name or leave it at the default</li></ul>',
219
-
position: 'top',
220
-
},
221
-
{
222
-
title: 'Saving Series & Actions',
223
-
element: '.actionname',
224
-
intro:
225
-
'<ul><li>If we wish to save a specific action to compare later, give it a name here</li></ul>',
226
-
position: 'top',
227
-
},
228
-
{
229
-
title: 'Saving Series & Actions',
230
-
element: '.save-series-button',
231
-
intro:
232
-
'<ul><li>Press save series again.</li> <li>Your series and actions are now saved!</li></ul>',
233
-
position: 'top',
234
-
},
235
-
{
236
-
title: 'Comparison Tab',
237
-
element: '#router-link-performance-comparison',
238
-
intro: "<ul><li>Now let's head over to the comparison tab</li></ul>",
239
-
position: 'top',
240
-
},
241
-
{
242
-
title: 'Comparing Series',
243
-
intro: '<ul><li>Here we can select a saved series or action to compare</li></ul>',
244
-
position: 'top',
245
-
},
246
208
];
247
209
break;
210
+
// <div>
211
+
// Nodes from the accessibility tree have either a role <strong>role</strong> or <strong>internalRole</strong>
212
+
// <ul>
213
+
// <li>
214
+
// <i><b>Role</b></i> refers to <strong> ARIA </strong> roles, which indicate the purpose of the element to assistive technologies, like screen readers.
215
+
// All of the nodes rendered in this tree have a role of 'role'
216
+
// </li>
217
+
// <li>
218
+
// <i><b>internalRole</b></i> refers to browser-specific roles <strong> Chrome </strong> for its own accessibility processing
219
+
// </li>
220
+
// </ul>
221
+
// <p> Each node is given a property labeled <strong>ignored</strong>. Nodes read by the screen reader have their ignored property evaluate to <strong>false</strong>.
222
+
// Nodes not read by the screen reader evaluate to <strong>true</strong>.</p>
223
+
// <p> Nodes labeled as <strong>no name</strong> are visible to a screen reader, but were not given a name label.</p>
224
+
// </div>
225
+
// );
226
+
case'accessibility':
227
+
steps=[
228
+
{
229
+
title: 'Accessibility Tree',
230
+
element: '.display',
231
+
intro:
232
+
'<ul><li>Nodes from the accessibility tree have either a role or internalRole</li></ul>',
0 commit comments