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

Unified Diff: LayoutTests/inspector/text-autosizing-override.html

Issue 45363004: DevTools: explicitly control support for viewport meta tag so that desktop emulation was possible (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review comments addressed. Created 7 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
« no previous file with comments | « LayoutTests/inspector/styles/override-screen-size.html ('k') | Source/core/inspector/InspectorClient.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/text-autosizing-override.html
diff --git a/LayoutTests/inspector/text-autosizing-override.html b/LayoutTests/inspector/text-autosizing-override.html
index 87c29233cd2021db708fb03c856bdc56fbc6b399..3f2d2287e27e0314d86bae40b2146349d3dfbd92 100644
--- a/LayoutTests/inspector/text-autosizing-override.html
+++ b/LayoutTests/inspector/text-autosizing-override.html
@@ -61,26 +61,26 @@
},
function checkAutosizedWithDeviceMetrics(next) {
- PageAgent.setDeviceMetricsOverride(1920, 1200, 2, true, true, function() {
+ PageAgent.setDeviceMetricsOverride(1920, 1200, 2, false, true, true, function() {
assertAutosizingResult(true, next);
});
},
function checkNotAutosizedWithDeviceMetrics(next) {
- PageAgent.setDeviceMetricsOverride(1920, 1200, 2, true, false, function() {
+ PageAgent.setDeviceMetricsOverride(1920, 1200, 2, false, true, false, function() {
assertAutosizingResult(false, next);
});
},
function checkAutosizedWithoutDeviceMetrics(next) {
- PageAgent.setDeviceMetricsOverride(0, 0, 2, true, function() {
+ PageAgent.setDeviceMetricsOverride(0, 0, 2, false, false, true, function() {
assertAutosizingResult(true, next);
});
},
function checkAutosizedWhenDeviceMetricsOverrideSettings(next) {
InspectorTest.evaluateInPage("forceAutosizing(false)", function() {
- PageAgent.setDeviceMetricsOverride(1920, 1200, 2, true, true, function() {
+ PageAgent.setDeviceMetricsOverride(1920, 1200, 2, false, true, true, function() {
assertAutosizingResult(true, next);
});
});
« no previous file with comments | « LayoutTests/inspector/styles/override-screen-size.html ('k') | Source/core/inspector/InspectorClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698