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

Unified Diff: LayoutTests/accessibility/svg-bounds.html

Issue 1086753004: Switch LayoutTests to use renamed methods for deprecated text alternatives (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Re-add linux expectation Created 5 years, 6 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
« no previous file with comments | « LayoutTests/accessibility/spinbutton-value-expected.txt ('k') | LayoutTests/accessibility/svg-image.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/accessibility/svg-bounds.html
diff --git a/LayoutTests/accessibility/svg-bounds.html b/LayoutTests/accessibility/svg-bounds.html
index 8f7348a2e784a059cde3730ca18d7c1f4bb13e3c..d99acda9a6ad2cc650eb05a1f648b3ee541b3a28 100644
--- a/LayoutTests/accessibility/svg-bounds.html
+++ b/LayoutTests/accessibility/svg-bounds.html
@@ -46,28 +46,28 @@ if (window.testRunner && window.accessibilityController) {
var face = container.childAtIndex(0);
debug('Face role: ' + face.role);
- debug('Face label: ' + face.description);
+ debug('Face label: ' + face.deprecatedDescription);
debug('FaceX: ' + (pageX(face) - x));
debug('FaceY: ' + Math.abs(pageY(face) - y));
debug('<br>');
var eye = container.childAtIndex(1);
debug('Eye role: ' + eye.role);
- debug('Eye label: ' + eye.description);
+ debug('Eye label: ' + eye.deprecatedDescription);
debug('EyeX: ' + (pageX(eye) - x));
debug('EyeY: ' + Math.abs(pageY(eye) - y));
debug('<br>');
var nose = container.childAtIndex(3);
debug('Nose role: ' + nose.role);
- debug('Nose label: ' + nose.description);
+ debug('Nose label: ' + nose.deprecatedDescription);
debug('NoseX: ' + (pageX(nose) - x));
debug('NoseY: ' + Math.abs(pageY(nose) - y));
debug('<br>');
var mouth = container.childAtIndex(4);
debug('Mouth role: ' + mouth.role);
- debug('Mouth label: ' + mouth.description);
+ debug('Mouth label: ' + mouth.deprecatedDescription);
debug('MouthX: ' + (pageX(mouth) - x));
debug('MouthY: ' + Math.floor(Math.abs(pageY(mouth) - y)));
debug('<br>');
@@ -82,7 +82,7 @@ if (window.testRunner && window.accessibilityController) {
var image = container.childAtIndex(6);
debug('Image role: ' + image.role);
- debug('Image label: ' + image.description);
+ debug('Image label: ' + image.deprecatedDescription);
debug('ImageX: ' + (pageX(image) - x));
debug('ImageY: ' + Math.abs(pageY(image) - y));
}
« no previous file with comments | « LayoutTests/accessibility/spinbutton-value-expected.txt ('k') | LayoutTests/accessibility/svg-image.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698