Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 cr.define('settings_rtl_tests', function() { | |
| 6 /** @implements {settings.DirectionDelegate} */ | |
| 7 function TestDirectionDelegate(isRtl) { | |
| 8 /** @override */ | |
| 9 this.isRtl = function() { return isRtl; }; | |
|
Dan Beam
2016/02/17 19:57:12
can move this to prototype if you really want, jus
| |
| 10 } | |
| 11 | |
| 12 function registerDrawerPanelTests() { | |
| 13 suite('settings drawer panel RTL tests', function() { | |
| 14 test('test i18n processing flips drawer panel', function() { | |
| 15 var ui = document.createElement('settings-ui'); | |
| 16 document.body.appendChild(ui); | |
| 17 Polymer.dom.flush(); | |
| 18 | |
| 19 assertFalse(ui.$.panel.rightDrawer); | |
| 20 | |
| 21 ui.directionDelegate = new TestDirectionDelegate(true /* isRtl */); | |
| 22 assertTrue(ui.$.panel.rightDrawer); | |
| 23 | |
| 24 ui.directionDelegate = new TestDirectionDelegate(false /* isRtl */); | |
| 25 assertFalse(ui.$.panel.rightDrawer); | |
| 26 }); | |
| 27 }); | |
| 28 } | |
| 29 | |
| 30 return { | |
| 31 registerDrawerPanelTests: registerDrawerPanelTests, | |
| 32 }; | |
| 33 }); | |
| OLD | NEW |