Sha256: f35ef67999dd5f070d677007aceefce045ff793ae3d86d85520879414d5427ea
Contents?: true
Size: 863 Bytes
Versions: 30
Compression:
Stored size: 863 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2010 Sprout Systems, Inc. and contributors. // portions copyright @2011 Apple Inc. // License: Licensed under MIT license (see license.js) // ========================================================================== /*global module test htmlbody ok equals same stop start */ var pane; (function() { pane = SC.ControlTestPane.design() .add("aria-role_ToolbarView", SC.ToolbarView, { }); pane.show(); module('SC.ToolbarView UI', pane.standardSetup()); test("Check that the toolbar view has role set", function(){ var viewElem = pane.view('aria-role_ToolbarView').$(); equals(viewElem.attr('role'), 'toolbar', "toolbar view has correct role set"); }); })();
Version data entries
30 entries across 30 versions & 1 rubygems