| Index: chrome/test/data/webui/print_preview/print_preview_ui_browsertest.js
|
| diff --git a/chrome/test/data/webui/print_preview/print_preview_ui_browsertest.js b/chrome/test/data/webui/print_preview/print_preview_ui_browsertest.js
|
| index 3b678f603f92aafb09327188193eb8d9f8a74680..f723d4953e9b3f7668763f221b83006436f23f8a 100644
|
| --- a/chrome/test/data/webui/print_preview/print_preview_ui_browsertest.js
|
| +++ b/chrome/test/data/webui/print_preview/print_preview_ui_browsertest.js
|
| @@ -81,3 +81,51 @@ TEST_F('PrintPreviewUIBrowserTest', 'DefaultDestinationSelectionRules',
|
| function() {
|
| mocha.grep(/DefaultDestinationSelectionRules\b/).run();
|
| });
|
| +
|
| +TEST_F('PrintPreviewUIBrowserTest', 'SystemDialogLinkIsHiddenInAppKioskMode',
|
| + function() {
|
| + mocha.grep(/SystemDialogLinkIsHiddenInAppKioskMode\b/).run();
|
| + });
|
| +
|
| +TEST_F('PrintPreviewUIBrowserTest', 'SectionsDisabled', function() {
|
| + mocha.grep(/SectionsDisabled\b/).run();
|
| +});
|
| +
|
| +TEST_F('PrintPreviewUIBrowserTest', 'PrintToPDFSelectedCapabilities',
|
| + function() {
|
| + mocha.grep(/PrintToPDFSelectedCapabilities\b/).run();
|
| + });
|
| +
|
| +TEST_F('PrintPreviewUIBrowserTest', 'SourceIsHTMLCapabilities', function() {
|
| + mocha.grep(/SourceIsHTMLCapabilities\b/).run();
|
| +});
|
| +
|
| +TEST_F('PrintPreviewUIBrowserTest', 'SourceIsPDFCapabilities', function() {
|
| + mocha.grep(/SourceIsPDFCapabilities\b/).run();
|
| +});
|
| +
|
| +TEST_F('PrintPreviewUIBrowserTest', 'ScalingUnchecksFitToPage', function() {
|
| + mocha.grep(/ScalingUnchecksFitToPage\b/).run();
|
| +});
|
| +
|
| +TEST_F('PrintPreviewUIBrowserTest', 'CheckNumCopiesPrintPreset', function() {
|
| + mocha.grep(/CheckNumCopiesPrintPreset\b/).run();
|
| +});
|
| +
|
| +TEST_F('PrintPreviewUIBrowserTest', 'CheckDuplexPrintPreset', function() {
|
| + mocha.grep(/CheckDuplexPrintPreset\b/).run();
|
| +});
|
| +
|
| +TEST_F('PrintPreviewUIBrowserTest', 'CustomMarginsControlsCheck', function() {
|
| + mocha.grep(/CustomMarginsControlsCheck\b/).run();
|
| +});
|
| +
|
| +TEST_F('PrintPreviewUIBrowserTest', 'PageLayoutHasNoMarginsHideHeaderFooter',
|
| + function() {
|
| + mocha.grep(/PageLayoutHasNoMarginsHideHeaderFooter\b/).run();
|
| + });
|
| +
|
| +TEST_F('PrintPreviewUIBrowserTest', 'PageLayoutHasMarginsShowHeaderFooter',
|
| + function() {
|
| + mocha.grep(/PageLayoutHasMarginsShowHeaderFooter\b/).run();
|
| + });
|
|
|