UNPKG

sku-pg

Version:

Skulpt is a Javascript implementation of Python 2.x. Python that runs in your browser!

62 lines (52 loc) 1.49 kB
<!DOCTYPE html> <html> <!-- Copyright 2011 The Closure Library Authors. All Rights Reserved. Use of this source code is governed by the Apache License, Version 2.0. See the COPYING file for details. --> <!-- @author mfrederick@google.com (Michael Frederick) --> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Closure Unit Tests for MenuSeparatorRenderer</title> <script src="../base.js"></script> <script> goog.require('goog.dom'); goog.require('goog.dom.classes'); goog.require('goog.events'); goog.require('goog.events.Event'); goog.require('goog.testing.events'); goog.require('goog.testing.jsunit'); goog.require('goog.ui.MenuButton'); goog.require('goog.testing.ui.rendererasserts'); </script> </head> <body> <div id="sandbox"> <!-- A menu separator to decorate --> <div id="separator" class="goog-menuseparator"></div> </div> <script> var sandbox; var originalSandbox; function setUp() { sandbox = goog.dom.getElement('sandbox'); originalSandbox = sandbox.cloneNode(true); } function tearDown() { sandbox.parentNode.replaceChild(originalSandbox, sandbox); } function testDecorate() { var separator = new goog.ui.MenuSeparator(); var dummyId = 'foo'; separator.setId(dummyId); assertEquals(dummyId, separator.getId()); var renderer = new goog.ui.MenuSeparatorRenderer(); renderer.decorate(separator, goog.dom.getElement('separator')) assertEquals('separator', separator.getId()); } </script> </body> </html>