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

Unified Diff: LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-spacing.html

Issue 703793002: Remove some testing of getPropertyCSSValue in fast/css/getComputedStyle (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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: LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-spacing.html
diff --git a/LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-spacing.html b/LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-spacing.html
index 526b3f87a2fe4edeeb89beef0179997669edf461..8d880ce4b61f91be26e25b2b29d97b32543f4eb6 100644
--- a/LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-spacing.html
+++ b/LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-spacing.html
@@ -17,10 +17,8 @@
{
var ob = document.getElementById(id + 'Pair');
log('getPropertyValue(' + prop + '): ' + document.defaultView.getComputedStyle(ob, null).getPropertyValue(prop));
- log('getPropertyCSSValue(' + prop + '): ' + document.defaultView.getComputedStyle(ob, null).getPropertyCSSValue(prop));
ob = document.getElementById(id + 'Single');
log('getPropertyValue(' + prop + '): ' + document.defaultView.getComputedStyle(ob, null).getPropertyValue(prop));
- log('getPropertyCSSValue(' + prop + '): ' + document.defaultView.getComputedStyle(ob, null).getPropertyCSSValue(prop));
}
function runTests()
@@ -40,7 +38,6 @@
log('Test getting initial value of the background size.')
var ob = document.getElementById('spacingInit');
log('getPropertyValue(border-spacing): ' + document.defaultView.getComputedStyle(ob, null).getPropertyValue('border-spacing'));
- log('getPropertyCSSValue(border-spacing): ' + document.defaultView.getComputedStyle(ob, null).getPropertyCSSValue('border-spacing'));
}
</script>
</head>

Powered by Google App Engine
This is Rietveld 408576698