Sha256: 45ce36316ec0eb6e5c00671b4309d1029a6a3ee83acc636acfc1ed97f42c1932
Contents?: true
Size: 844 Bytes
Versions: 11
Compression:
Stored size: 844 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, { }); 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
11 entries across 11 versions & 1 rubygems