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

Unified Diff: chrome/test/data/extensions/api_test/automation/sites/tree_change.html

Issue 2867073003: Name calculation should not include nameFrom:author descendants. (Closed)
Patch Set: Rebase Created 3 years, 7 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: chrome/test/data/extensions/api_test/automation/sites/tree_change.html
diff --git a/chrome/test/data/extensions/api_test/automation/sites/tree_change.html b/chrome/test/data/extensions/api_test/automation/sites/tree_change.html
index 512acd8fe5ae94bf08f1a4cfc6835dd90756ae87..5a30d4328a0d59fb8090f841555d5434c574887f 100644
--- a/chrome/test/data/extensions/api_test/automation/sites/tree_change.html
+++ b/chrome/test/data/extensions/api_test/automation/sites/tree_change.html
@@ -9,20 +9,21 @@
</head>
<body>
<ul id="list">
- <li>One</li>
- <li>Two</li>
+ <li tabindex="-1">One</li>
+ <li tabindex="-1">Two</li>
</ul>
<button id="add">Add</button>
<button id="remove">Remove</button>
<button id="live">Live</button>
- <div id="dead_region1"></div>
- <div id="live_region" aria-live="polite"></div>
- <div id="dead_region2"></div>
+ <div tabindex="-1" id="dead_region1"></div>
+ <div tabindex="-1" id="live_region" aria-live="polite"></div>
+ <div tabindex="-1" id="dead_region2"></div>
<script>
document.getElementById('add').addEventListener('click', function() {
var li = document.createElement('li');
+ li.tabIndex = -1;
li.innerText = 'New';
document.getElementById('list').appendChild(li);
});
« no previous file with comments | « chrome/common/extensions/api/automation.idl ('k') | content/browser/accessibility/accessibility_ipc_error_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698