rem stringlengths 0 126k | add stringlengths 0 441k | context stringlengths 13 136k | meta stringlengths 132 347 |
|---|---|---|---|
assertEquals("a\nb", decodeText("a<br>b")); assertEquals("a\nb", decodeText("a<br />b")); | function testDecodeTextWithHtmlFormat() { assertEquals("abc", decodeText("abc")); assertEquals("' '", decodeText("' '")); assertEquals("' '", decodeText("' '")); assertEquals("' '", decodeText("' '")); assertEquals("'abc'", decodeText("'abc'")); assertEquals("&", decodeText("&amp;")); assertEqual... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/f9e10fae39b92cc24106a3c51c969e4984378223/html-format-tests.js/buggy/src/content/tests/unit/html-format-tests.js | |
assertEquals(" ", encodeText(" ")); assertEquals(" ", encodeText(" ")); | function testEncodeTextWithHtmlFormat() { assertEquals(" ", encodeText("\xA0")); assertEquals("'abc'", encodeText("'abc'")); assertEquals("&amp;", encodeText("&")); assertEquals("a=b&c=d", encodeText("a=b&c=d")); assertEquals("&foobar;", encodeText("&foobar;"));} | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/9c787c7e6c12c5505c234cea90865fbee0d58139/html-format-tests.js/clean/src/content/tests/unit/html-format-tests.js | |
assertEquals("<br />", encodeText("\n")); | function testEncodeTextWithHtmlFormat() { assertEquals(" ", encodeText("\xA0")); assertEquals(" ", encodeText(" ")); assertEquals(" ", encodeText(" ")); assertEquals("'abc'", encodeText("'abc'")); assertEquals("&amp;", encodeText("&")); assertEquals("a=b&c=d", encodeText("a=b&c=d")); assertEqua... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/f9e10fae39b92cc24106a3c51c969e4984378223/html-format-tests.js/buggy/src/content/tests/unit/html-format-tests.js | |
debug('<span class="fail">FAIL</span> ' + msg + '</span>'); | debug('<span class="fail">FAIL</span> ' + escapeHTML(msg) + '</span>'); | function testFailed(msg){ debug('<span class="fail">FAIL</span> ' + msg + '</span>');} | 10664 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/10664/aa3d4efb526b0905d61e1ca8f92836f0853903e4/js-test-pre.js/clean/third_party/WebKit/LayoutTests/fast/js/resources/js-test-pre.js |
assertEquals('assertEquals(new String[] {"", "abc", "ab,c"}, selenium.getSelectOptions("theSelect"));', nextCommand()); | assertEquals('String[] array1 = selenium.getSelectOptions("theSelect");\n' + 'assertEquals(3, array1.length);\n' + 'assertEquals("", array1[0]);\n' + 'assertEquals("abc", array1[1]);\n' + 'assertEquals("ab,c", array1[2]);', nextCommand()); | function testJavaRCFormat() { var format = this.formats.findFormat("java-rc"); var f = format.getFormatter(); this.formatter = f; assertEquals('assertTrue(selenium.isTextPresent("hello"));', nextCommand()); assertEquals('assertFalse(selenium.isTextPresent("hello"));', nextCommand()); assertEquals('boolean abc = seleniu... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/4bfa7692cc2103f89695fba65b7284a7b4aeb230/format-tests.js/clean/src/content/tests/unit/format-tests.js |
assertEquals('assertFalse(Pattern.compile("ab[cd]").matcher(selenium.getText("test")).find());', nextCommand()); | function testJavaRCFormat() { var format = this.formats.findFormat("java-rc"); var f = format.getFormatter(); this.formatter = f; assertEquals('assertTrue(selenium.isTextPresent("hello"));', nextCommand()); assertEquals('assertFalse(selenium.isTextPresent("hello"));', nextCommand()); assertEquals('boolean abc = seleniu... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/9c787c7e6c12c5505c234cea90865fbee0d58139/format-tests.js/buggy/src/content/tests/unit/format-tests.js | |
assertEquals('assertTrue(selenium.getText("abc").matches("^def(.|[\\\\r\\\\n])*$"));', nextCommand()); | assertEquals('assertTrue(selenium.getText("abc").matches("^def[\\\\s\\\\S]*$"));', nextCommand()); | function testJavaRCFormat() { var format = this.formats.findFormat("java-rc"); var f = format.getFormatter(); this.formatter = f; assertEquals('assertTrue(selenium.isTextPresent("hello"));', nextCommand()); assertEquals('assertFalse(selenium.isTextPresent("hello"));', nextCommand()); assertEquals('boolean abc = seleniu... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/23c4186a1b3c77494c1e11f116c95854f339622e/format-tests.js/buggy/src/content/tests/unit/format-tests.js |
var yahooJP = document.getElementById("test2").getElementsByTagName("a")[4]; assertLocator("link=Yahoo Japan", eventManager.getLinkLocator(yahooJP, pageBot), yahooJP); | function testLinkLocator() { var google = document.getElementById("test2").getElementsByTagName("a")[0]; assertLocator("link=exact:Google:Google", eventManager.getLinkLocator(google, pageBot), google); var yahoo = document.getElementById("test2").getElementsByTagName("a")[1]; assertLocator("link=Yahoo", eventManager.ge... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/5d00358e7267ee65850edd6ba988b28ae110bb8f/eventManager-tests.js/buggy/src/content/tests/eventManager-tests.js | |
var yahoo2 = document.getElementById("test2").getElementsByTagName("a")[2]; assertLocator(" | function testLinkXPathLocator() { var yahoo = document.getElementById("test2").getElementsByTagName("a")[1]; assertLocator("//a[contains(text(),'Yahoo')]", builders.buildWith('linkXPath', yahoo), yahoo); var yahoo2 = document.getElementById("test2").getElementsByTagName("a")[2]; assertLocator("//a[img/@alt='test']", bu... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/1de401aa455d723ad44451e4b1113d01cc8446c2/locatorBuilders-tests.js/buggy/src/content/tests/unit/locatorBuilders-tests.js | |
else { try { var processNext = handler.executor.call(selenium, command.target, command.value); if (handler.type == "assert") { this.assertionPassed(); } else { this.actionOK(); } | function TestLoop(commandFactory) { this.commandFactory = commandFactory; this.commandInterval = 0; this.processState == SELENIUM_PROCESS_CONTINUE; var self = this; this.start = function() { self.continueCurrentTest(); } this.continueCurrentTest = function() { this.processState = self... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/4ef9dce64cb8bc638dd0887dfc6ace54d10ce2e4/selenium-executionloop.js/buggy/javascript/selenium-executionloop.js | |
return processNext; } catch (e) { if (e.isJsUnitException && handler.type == "assert") { this.assertionFailed(e.jsUnitMessage); } else { this.commandError(e.message); } | try { var processNext = handler.executor.call(selenium, command.target, command.value); if (processNext == undefined && handler.wait) { processNext = SELENIUM_PROCESS_WAIT; } if (handler.type == "assert") { this.assertionPassed(); } else { this.actionOK(); } return processNext; } catch (e) { if (e.isJsUnitException... | function TestLoop(commandFactory) { this.commandFactory = commandFactory; this.commandInterval = 0; this.processState == SELENIUM_PROCESS_CONTINUE; var self = this; this.start = function() { self.continueCurrentTest(); } this.continueCurrentTest = function() { this.processState = self... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/4ef9dce64cb8bc638dd0887dfc6ace54d10ce2e4/selenium-executionloop.js/buggy/javascript/selenium-executionloop.js |
}; | }; | function TestLoop(commandFactory) { this.commandFactory = commandFactory; var self = this; this.start = function() { this.continueCurrentTest(); }; this.continueCurrentTest = function() { var testStatus = this.kickoffNextCommandExecution(); if (testStatus == TEST_FINISHED) { ... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/ffcc6e38fdd60734dac28f8585206590a016367d/selenium-executionloop.js/buggy/code/javascript/selenium-executionloop.js |
else { try { var processNext = handler.executor.call(selenium, command.target, command.value); if (handler.type == "assert") { this.assertionPassed(); } else { this.actionOK(); } | function TestLoop(commandFactory) { this.commandFactory = commandFactory; this.commandInterval = 0; this.processState == SELENIUM_PROCESS_CONTINUE; var self = this; this.start = function() { self.continueCurrentTest(); } this.continueCurrentTest = function() { this.processState = self... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/d29c3300057cc06e6959278a7a9672474b9dc998/selenium-executionloop.js/clean/javascript/selenium-executionloop.js | |
return processNext; } catch (e) { if (e.isJsUnitException && handler.type == "assert") { this.assertionFailed(e.jsUnitMessage); } else { this.commandError(e.message); } | try { var processNext = handler.executor.call(selenium, command.target, command.value); if (processNext == undefined && handler.wait) { processNext = SELENIUM_PROCESS_WAIT; } if (handler.type == "assert") { this.assertionPassed(); } else { this.actionOK(); } return processNext; } catch (e) { if (e.isJsUnitException... | function TestLoop(commandFactory) { this.commandFactory = commandFactory; this.commandInterval = 0; this.processState == SELENIUM_PROCESS_CONTINUE; var self = this; this.start = function() { self.continueCurrentTest(); } this.continueCurrentTest = function() { this.processState = self... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/d29c3300057cc06e6959278a7a9672474b9dc998/selenium-executionloop.js/clean/javascript/selenium-executionloop.js |
LOG.error(e); | function TestLoop(commandFactory, executionContext) { this.commandFactory = commandFactory; var self = this; this.start = function() { this.continueCurrentTest(); }; this.continueCurrentTest = function() { var testStatus = this.kickoffNextCommandExecution(); if (testStatus == TEST_FI... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/206618ad911a34b103c562be4c5fe12b255d9234/selenium-executionloop.js/clean/code/javascript/selenium-executionloop.js | |
function TestLoop(commandFactory) { this.commandFactory = commandFactory; var self = this; this.start = function() { this.continueCurrentTest(); }; this.continueCurrentTest = function() { var testStatus = this.kickoffNextCommandExecution(); if (testStatus == TEST_FINISHED) { ... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/2fcc52b4c36971bc80c8c53c7e2a4289ca8af0c0/selenium-executionloop.js/clean/code/javascript/selenium-executionloop.js | ||
if (interval >= 0) { | if (interval < 0) { this.waitingForNext(); } else { | function TestLoop(commandFactory) { this.commandFactory = commandFactory; var self = this; this.start = function() { this.continueCurrentTest(); }; this.continueCurrentTest = function() { var testStatus = this.kickoffNextCommandExecution(); if (testStatus == TEST_FINISHED) { ... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/2fcc52b4c36971bc80c8c53c7e2a4289ca8af0c0/selenium-executionloop.js/clean/code/javascript/selenium-executionloop.js |
LOG.error(e); | function TestLoop(commandFactory, executionContext) { this.commandFactory = commandFactory; var self = this; this.start = function() { this.continueCurrentTest(); }; this.continueCurrentTest = function() { var testStatus = this.kickoffNextCommandExecution(); if (testStatus == TEST_FI... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/7234564e1d39cfe9defd5bae65af3eeee2fe7720/selenium-executionloop.js/buggy/code/javascript/selenium-executionloop.js | |
}; | }; | function TestLoop(commandFactory) { this.commandFactory = commandFactory; var self = this; this.start = function() { this.continueCurrentTest(); }; this.continueCurrentTest = function() { var testStatus = this.kickoffNextCommandExecution(); if (testStatus == TEST_FINISHED) { ... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/02a0b4820ee03a2ea48dcd7849e696cbcb2e910b/selenium-executionloop.js/buggy/code/javascript/selenium-executionloop.js |
function TestLoop(commandFactory) { this.commandFactory = commandFactory; var self = this; this.start = function() { this.continueCurrentTest(); }; this.continueCurrentTest = function() { var testStatus = this.kickoffNextCommandExecution(); if (testStatus == TEST_FINISHED) { ... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/ed2c8a04823b08b4112b9e08d6cbf9962ca6c66f/selenium-executionloop.js/clean/code/javascript/selenium-executionloop.js | ||
if (interval >= 0) { | if (interval < 0) { this.waitingForNext(); } else { | function TestLoop(commandFactory) { this.commandFactory = commandFactory; var self = this; this.start = function() { this.continueCurrentTest(); }; this.continueCurrentTest = function() { var testStatus = this.kickoffNextCommandExecution(); if (testStatus == TEST_FINISHED) { ... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/ed2c8a04823b08b4112b9e08d6cbf9962ca6c66f/selenium-executionloop.js/clean/code/javascript/selenium-executionloop.js |
throw new Error("Unknown command"); | throw new Error("Unknown command: '" + command.command + "'"); | function TestLoop(commandFactory, executionContext) { this.commandFactory = commandFactory; var self = this; this.start = function() { this.continueCurrentTest(); }; this.continueCurrentTest = function() { var testStatus = this.kickoffNextCommandExecution(); if (testStatus == TEST_FI... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/2bd978b38b5ad13301837ff357bbfa9974d6b04d/selenium-executionloop.js/clean/code/javascript/selenium-executionloop.js |
throw new Error("Unknown command"); | throw new Error("Unknown command: '" + command.command + "'"); | function TestLoop(commandFactory, executionContext) { this.commandFactory = commandFactory; var self = this; this.start = function() { this.continueCurrentTest(); }; this.continueCurrentTest = function() { var testStatus = this.kickoffNextCommandExecution(); if (testStatus == TEST_FI... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/21ef9f54e709009da0732f5cb859a711e2443a4b/selenium-executionloop.js/clean/code/javascript/selenium-executionloop.js |
log.error("failed to select format: " + error); | this.log.error("failed to select format: " + error); | function TestManager(options) { this.options = options; this.log = new Log("TestManager"); this.presetFormatInfos = [new InternalFormatInfo("default", "HTML", "html.js"), new InternalFormatInfo("ruby", "Ruby", "ruby.js")]; this.reloadFormats(); if (options.selectedFormat != null) { try { this.selectFormat(o... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/c10f875b8009748611ac6e3663074a62a23124a5/testManager.js/clean/src/content/testManager.js |
this.log.debug("selecting default format"); | function TestManager(options) { this.options = options; this.log = new Log("TestManager"); this.presetFormatInfos = [new InternalFormatInfo("default", "HTML", "html.js"), new InternalFormatInfo("ruby", "Ruby", "ruby.js")]; this.reloadFormats(); if (options.selectedFormat != null) { try { this.selectFormat(o... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/c10f875b8009748611ac6e3663074a62a23124a5/testManager.js/clean/src/content/testManager.js | |
this.currentFormatInfo = this.formatInfos[0]; | if (options.selectedFormat != null) { try { this.selectFormat(options.selectedFormat); } catch (error) { log.error("failed to select format: " + error); } } if (this.currentFormatInfo == null) { this.currentFormatInfo = this.formatInfos[0]; } | function TestManager(options) { this.options = options; this.log = new Log("TestManager"); this.presetFormatInfos = [new InternalFormatInfo("default", "HTML", "html.js"), new InternalFormatInfo("ruby", "Ruby", "ruby.js")]; this.reloadFormats(); this.currentFormatInfo = this.formatInfos[0];} | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/1ca938bbe62e368ad69df4d0ac58c264da0a0e3f/testManager.js/clean/src/content/testManager.js |
return capitalize(testName) + "Test"; | return "The" + capitalize(testName) + "Test"; | function testMethodName(testName) { return capitalize(testName) + "Test";} | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/77e79069f660200c1daf4a274d947e63bd5f82cb/cs-rc.js/clean/src/content/formats/cs-rc.js |
debug('<span class="pass">PASS</span> ' + msg + '</span>'); | debug('<span class="pass">PASS</span> ' + escapeHTML(msg) + '</span>'); | function testPassed(msg){ debug('<span class="pass">PASS</span> ' + msg + '</span>');} | 10664 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/10664/aa3d4efb526b0905d61e1ca8f92836f0853903e4/js-test-pre.js/clean/third_party/WebKit/LayoutTests/fast/js/resources/js-test-pre.js |
assertEquals('$sel->open("http: | assertEquals('$sel->open_ok("http: | function testPerlRCFormat() { var format = this.formats.findFormat("perl-rc"); var f = format.getFormatter(); assertEquals('$sel->is_text_present_ok("hello");', f.formatCommand(new Command('assertTextPresent', 'hello'))); assertEquals('ok(not $sel->is_text_present("hello"));', f.formatCommand(new Command('assertTextNot... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/fe1372a65edb0f9de4e2c39835ef3104503a1322/format-tests.js/buggy/src/content/tests/unit/format-tests.js |
SeleniumIDE.testRecorderPopup = function(event) { | SeleniumIDE.Overlay.testRecorderPopup = function(event) { | SeleniumIDE.testRecorderPopup = function(event) { if (event.target.id != "contentAreaContextMenu") return; contextMenu = event.target; for (var i = contextMenu.childNodes.length - 1; i >= 0; i--) { var item = contextMenu.childNodes[i]; if (item.id && /^selenium-ide-check-/.test(item.id)) { contextMenu.removeChild(... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/4a3a9cf68d815a1584afc61dc59fe1e423c410e1/selenium-ide-overlay.js/buggy/src/content/selenium-ide-overlay.js |
assertEquals('assert /ab[cd]/ !~ @selenium.get_text("test")', nextCommand()); | function testRubyRCFormat() { var format = this.formats.findFormat("ruby-rc"); var f = format.getFormatter(); this.formatter = f; assertEquals('assert @selenium.is_text_present("hello")', nextCommand()); assertEquals('assert !@selenium.is_text_present("hello")', nextCommand()); assertEquals('abc = @selenium.is_text_pre... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/9c787c7e6c12c5505c234cea90865fbee0d58139/format-tests.js/buggy/src/content/tests/unit/format-tests.js | |
assertEquals('assert /^def(.|[\\r\\n])*$/ =~ @selenium.get_text("abc")', nextCommand()); | assertEquals('assert /^def[\\s\\S]*$/ =~ @selenium.get_text("abc")', nextCommand()); | function testRubyRCFormat() { var format = this.formats.findFormat("ruby-rc"); var f = format.getFormatter(); this.formatter = f; assertEquals('assert @selenium.is_text_present("hello")', nextCommand()); assertEquals('assert !@selenium.is_text_present("hello")', nextCommand()); assertEquals('abc = @selenium.is_text_pre... | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/23c4186a1b3c77494c1e11f116c95854f339622e/format-tests.js/buggy/src/content/tests/unit/format-tests.js |
Object.extend(options, {delay: delay + i*speed})); | Object.extend(options, { delay: delay + i*speed })); | Effect.Text = function(element, effect) { element = $(element); var options = Object.extend({ speed: 0.1, delay: 0.0 }, arguments[2] || {}); var speed = options.speed; var delay = options.delay; for(var i = 0; i < element.childNodes.length; i++) new effect(element.childNodes[i], Object.extend(opt... | 4053 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4053/cd20286092d311391869aa6031bdd86b5e047d0f/effects.js/clean/src/effects.js |
function textArea(element) { var ta = this; this.element = element; this.parent = this.element.parentNode; this.dimensions = dimensions(element); // Prepare wrapper this.wrapper = document.createElement('div'); this.wrapper.className = 'resizable-textarea'; this.parent.insertBefore(this.wrapper, this.element)... | 3650 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3650/ea2d79109595f0c936259ffacfccd904f8dcd599/textarea.js/clean/misc/textarea.js | ||
this.element.style.MozBoxSizing = 'border-box'; | this.element.style.MozBoxSizing = 'border-box'; | function textArea(element) { var ta = this; this.element = element; this.parent = this.element.parentNode; this.dimensions = dimensions(element); // Prepare wrapper this.wrapper = document.createElement('div'); this.wrapper.className = 'resizable-textarea'; this.parent.insertBefore(this.wrapper, this.element)... | 3650 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3650/ea2d79109595f0c936259ffacfccd904f8dcd599/textarea.js/clean/misc/textarea.js |
this.isMSIE = (navigator.appName == "Microsoft Internet Explorer"); | this.isIE = (navigator.appName == "Microsoft Internet Explorer"); | function TinyMCE_Cleanup() { this.isMSIE = (navigator.appName == "Microsoft Internet Explorer"); this.rules = tinyMCE.clearArray(new Array()); // Default config this.settings = { indent_elements : 'head,table,tbody,thead,tfoot,form,tr,ul,ol,blockquote,object', newline_before_elements : 'h1,h2,h3,h4,h5,h6,pre,address,... | 10343 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/10343/524e24acf79702622c51dba4bb678337072e34b9/tiny_mce_src.js/clean/mambots/editors/tinymce/jscripts/tiny_mce/tiny_mce_src.js |
this.closeElementsRe = /^(IMG|BR|HR|LINK|META|BASE|INPUT|BUTTON|AREA)$/; | this.closeElementsRe = /^(IMG|BR|HR|LINK|META|BASE|INPUT|AREA)$/; | function TinyMCE_Cleanup() { this.isMSIE = (navigator.appName == "Microsoft Internet Explorer"); this.rules = tinyMCE.clearArray(new Array()); // Default config this.settings = { indent_elements : 'head,table,tbody,thead,tfoot,form,tr,ul,ol,blockquote,object', newline_before_elements : 'h1,h2,h3,h4,h5,h6,pre,address,... | 10343 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/10343/524e24acf79702622c51dba4bb678337072e34b9/tiny_mce_src.js/clean/mambots/editors/tinymce/jscripts/tiny_mce/tiny_mce_src.js |
var self = this; | function TinyMCE_ContextMenu(settings) { // Default value function function defParam(key, def_val) { settings[key] = typeof(settings[key]) != "undefined" ? settings[key] : def_val; } var self = this; this.isMSIE = (navigator.appName == "Microsoft Internet Explorer"); // Setup contextmenu div this.contextMenuDiv = docu... | 10343 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/10343/524e24acf79702622c51dba4bb678337072e34b9/editor_plugin_src.js/buggy/mambots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js | |
if(!tinyMCE.settings['contextmenu_skip_plugin_css']){tinyMCE.loadCSS(tinyMCE.baseURL+"/plugins/contextmenu/css/contextmenu.css");}var TinyMCE_ContextMenuPlugin={_contextMenu:null,getInfo:function(){return{longname:'Context menus',author:'Moxiecode Systems',authorurl:'http: | if(!tinyMCE.settings['contextmenu_skip_plugin_css']){tinyMCE.loadCSS(tinyMCE.baseURL+"/plugins/contextmenu/css/contextmenu.css")}var TinyMCE_ContextMenuPlugin={_contextMenu:null,getInfo:function(){return{longname:'Context menus',author:'Moxiecode Systems AB',authorurl:'http: | if(!tinyMCE.settings['contextmenu_skip_plugin_css']){tinyMCE.loadCSS(tinyMCE.baseURL+"/plugins/contextmenu/css/contextmenu.css");}var TinyMCE_ContextMenuPlugin={_contextMenu:null,getInfo:function(){return{longname:'Context menus',author:'Moxiecode Systems',authorurl:'http://tinymce.moxiecode.com',infourl:'http://tinymc... | 10343 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/10343/524e24acf79702622c51dba4bb678337072e34b9/editor_plugin.js/clean/mambots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js |
valid_child_elements : s.valid_child_elements, | function TinyMCE_Control(settings) { var t, i, to, fu, p, x, fn, fu, pn, s = settings; this.undoRedoLevel = true; this.isTinyMCE_Control = true; // Default settings this.settings = s; this.settings['theme'] = tinyMCE.getParam("theme", "default"); this.settings['width'] = tinyMCE.getParam("width", -1); this.settings['he... | 10343 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/10343/524e24acf79702622c51dba4bb678337072e34b9/tiny_mce_src.js/clean/mambots/editors/tinymce/jscripts/tiny_mce/tiny_mce_src.js | |
this.minorVersion = "0.6.1"; this.releaseDate = "2006-05-04"; | this.minorVersion = "0.8"; this.releaseDate = "2006-10-23"; | function TinyMCE_Engine() { this.majorVersion = "2"; this.minorVersion = "0.6.1"; this.releaseDate = "2006-05-04"; this.instances = new Array(); this.switchClassCache = new Array(); this.windowArgs = new Array(); this.loadedFiles = new Array(); this.pendingFiles = new Array(); this.loadingIndex = 0; this.configs = new ... | 10343 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/10343/524e24acf79702622c51dba4bb678337072e34b9/tiny_mce_src.js/clean/mambots/editors/tinymce/jscripts/tiny_mce/tiny_mce_src.js |
var ua = navigator.userAgent; | ua = navigator.userAgent; | function TinyMCE_Engine() { this.majorVersion = "2"; this.minorVersion = "0.6.1"; this.releaseDate = "2006-05-04"; this.instances = new Array(); this.switchClassCache = new Array(); this.windowArgs = new Array(); this.loadedFiles = new Array(); this.pendingFiles = new Array(); this.loadingIndex = 0; this.configs = new ... | 10343 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/10343/524e24acf79702622c51dba4bb678337072e34b9/tiny_mce_src.js/clean/mambots/editors/tinymce/jscripts/tiny_mce/tiny_mce_src.js |
this.isIE = this.isMSIE; this.isRealIE = this.isMSIE && !this.isOpera; | function TinyMCE_Engine() { this.majorVersion = "2"; this.minorVersion = "0.6.1"; this.releaseDate = "2006-05-04"; this.instances = new Array(); this.switchClassCache = new Array(); this.windowArgs = new Array(); this.loadedFiles = new Array(); this.pendingFiles = new Array(); this.loadingIndex = 0; this.configs = new ... | 10343 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/10343/524e24acf79702622c51dba4bb678337072e34b9/tiny_mce_src.js/clean/mambots/editors/tinymce/jscripts/tiny_mce/tiny_mce_src.js | |
var TinyMCE_InlinePopupsPlugin={getInfo:function(){return{longname:'Inline Popups',author:'Moxiecode Systems',authorurl:'http: | var TinyMCE_InlinePopupsPlugin={getInfo:function(){return{longname:'Inline Popups',author:'Moxiecode Systems AB',authorurl:'http: | var TinyMCE_InlinePopupsPlugin={getInfo:function(){return{longname:'Inline Popups',author:'Moxiecode Systems',authorurl:'http://tinymce.moxiecode.com',infourl:'http://tinymce.moxiecode.com/tinymce/docs/plugin_inlinepopups.html',version:tinyMCE.majorVersion+"."+tinyMCE.minorVersion};}};tinyMCE.addPlugin("inlinepopups",T... | 10343 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/10343/524e24acf79702622c51dba4bb678337072e34b9/editor_plugin.js/clean/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js |
var TinyMCE_InlinePopupsPlugin={getInfo:function(){return{longname:'Inline Popups',author:'Moxiecode Systems',authorurl:'http: | var TinyMCE_InlinePopupsPlugin={getInfo:function(){return{longname:'Inline Popups',author:'Moxiecode Systems AB',authorurl:'http: | var TinyMCE_InlinePopupsPlugin={getInfo:function(){return{longname:'Inline Popups',author:'Moxiecode Systems',authorurl:'http://tinymce.moxiecode.com',infourl:'http://tinymce.moxiecode.com/tinymce/docs/plugin_inlinepopups.html',version:tinyMCE.majorVersion+"."+tinyMCE.minorVersion};}};tinyMCE.addPlugin("inlinepopups",T... | 10343 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/10343/524e24acf79702622c51dba4bb678337072e34b9/editor_plugin.js/clean/mambots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js |
function tite_edit_add(id, mode){ if (document.getElementById(mode + '_input_' + id)) { return; } var area = document.getElementById(mode + '_' + id); var title = document.getElementById(mode + '_name_' + id); var input = document.createElement('input'); title.style.display ='none'; input.type = 'text'; input.size = 5... | 9568 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9568/fa471eab5f78772b5f05f252817cbb8824e1f25c/forum_view.js/buggy/cms/trunk/javascript/forums/forum_view.js | ||
this.title = function() {return this.currentDocument.title;}; | this.title = function() { return this.currentDocument.title; }; | this.title = function() {return this.currentDocument.title;}; | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/0e14a53996e4d4f6077da9fa5f25415f4fff0108/selenium-browserbot.js/buggy/code/javascript/core/scripts/selenium-browserbot.js |
this.title = function() { return this.currentDocument.title; }; | this.title = function() {return this.currentDocument.title;}; | this.title = function() { return this.currentDocument.title; }; | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/6b0b260c628dcdbf842d816728bb3bdcc6219faa/selenium-browserbot.js/buggy/code/javascript/core/scripts/selenium-browserbot.js |
result.target = window.document.title; | result.target = SeleniumIDE.getRecorderWindow().exactMatchPattern(window.document.title); | title: function(window, element) { var result = { name: "Title" }; if (window.document) { result.target = window.document.title; } else { result.disabled = true; } return result; }, | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/56fc4f5f3917b78710f5a5ebd9ac6059585b5b7f/selenium-ide-overlay.js/buggy/src/content/selenium-ide-overlay.js |
var t = this.currentDocument.title; if (typeof(t) == "string") { t = t.trim(); } return t; | var t = this.document().title; if (typeof(t) == "string") { t = t.trim(); } return t; | this.title = function() { var t = this.currentDocument.title; if (typeof(t) == "string") { t = t.trim(); } return t; }; | 4983 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4983/f68bbe7b139ef983240d5f2c30b4cfaf2febeeb0/selenium-browserbot.js/clean/code/javascript/core/scripts/selenium-browserbot.js |
toColorPart: function() { var digits = this.toString(16); if (this < 16) return '0' + digits; return digits; }, | Number.prototype.toColorPart = function() { var digits = this.toString(16); if (this < 16) return '0' + digits; return digits; } | toColorPart: function() { var digits = this.toString(16); if (this < 16) return '0' + digits; return digits; }, | 4053 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4053/a2c6b493070c56ddf61aed9bf1fb5f9b3b94aa80/prototype.js/clean/lib/prototype.js |
Number.prototype.toColorPart = function() { var digits = this.toString(16); if (this < 16) return '0' + digits; return digits; } | toColorPart: function() { var digits = this.toString(16); if (this < 16) return '0' + digits; return digits; }, | Number.prototype.toColorPart = function() { var digits = this.toString(16); if (this < 16) return '0' + digits; return digits;} | 4053 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4053/2763f23a530881acd784be63eed95031c54a4f3a/prototype.js/clean/lib/prototype.js |
Number.prototype.toColorPart = function() { var digits = this.toString(16); if (this < 16) return '0' + digits; return digits; } | toColorPart: function() { var digits = this.toString(16); if (this < 16) return '0' + digits; return digits; }, | Number.prototype.toColorPart = function() { var digits = this.toString(16); if (this < 16) return '0' + digits; return digits;} | 742 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/742/3f913f897829fb026ef98df2d57f8da94ee5339d/prototype.js/buggy/public/javascripts/prototype.js |
function ToCurrency (s) | function ToCurrency (s, validator) | function ToCurrency (s){ /* NYI */ return null;} | 7338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/7338/f9cd6d0dbb79bde7153e4901d04bc2ceb87dcb68/WebUIValidation_2.0.js/buggy/mcs/class/System.Web/resources/WebUIValidation_2.0.js |
function ToDate (s) | function ToDate (s, validator) | function ToDate (s){ /* NYI */ return null;} | 7338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/7338/f9cd6d0dbb79bde7153e4901d04bc2ceb87dcb68/WebUIValidation_2.0.js/buggy/mcs/class/System.Web/resources/WebUIValidation_2.0.js |
/* NYI */ return null; | var m, day, month, year; var yearFirstExp = new RegExp("^\\s*((\\d{4})|(\\d{2}))([-/]|\\. ?)(\\d{1,2})\\4(\\d{1,2})\\s*$"); m = s.match(yearFirstExp); if (m != null && (m[2].length == 4 || validator.dateorder == "ymd")) { day = m[6]; month = m[5]; year = (m[2].length == 4) ? m[2] : GetFullYear(parseInt(m[3], 10), valid... | function ToDate (s){ /* NYI */ return null;} | 7338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/7338/f9cd6d0dbb79bde7153e4901d04bc2ceb87dcb68/WebUIValidation_2.0.js/buggy/mcs/class/System.Web/resources/WebUIValidation_2.0.js |
function ToDouble (s) | function ToDouble (s, validator) | function ToDouble (s){ if ((v = parseFloat(s)) != s - 0) return null; else return v;} | 7338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/7338/f9cd6d0dbb79bde7153e4901d04bc2ceb87dcb68/WebUIValidation_2.0.js/buggy/mcs/class/System.Web/resources/WebUIValidation_2.0.js |
return this; | return parseFloat(this); | toFloat: function(){ return this; } | 6991 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6991/c867c04a2c14582c6eb4c48fcdb1cb01facbbd51/String.js/clean/Native/String.js |
return this; | return parseFloat(this); | toFloat: function(){ return this; } | 5409 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5409/c867c04a2c14582c6eb4c48fcdb1cb01facbbd51/String.js/buggy/Native/String.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/clean/actionpack/lib/action_view/helpers/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/clean/railties/html/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 107 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/107/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/clean/actionpack/lib/action_view/helpers/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 2069 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2069/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/clean/actionpack/lib/action_view/helpers/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 107 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/107/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/buggy/railties/html/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 1604 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1604/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/buggy/actionpack/lib/action_view/helpers/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/clean/actionpack/lib/action_view/helpers/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/clean/railties/html/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 2338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2338/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/clean/railties/html/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/buggy/railties/html/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/clean/railties/html/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 4687 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4687/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/clean/actionpack/lib/action_view/helpers/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/buggy/railties/html/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/buggy/railties/html/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/clean/actionpack/lib/action_view/helpers/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 1604 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1604/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/clean/actionpack/lib/action_view/helpers/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 2069 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2069/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/buggy/railties/html/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 1604 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1604/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/clean/railties/html/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 107 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/107/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/buggy/actionpack/lib/action_view/helpers/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/buggy/actionpack/lib/action_view/helpers/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 4687 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4687/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/clean/actionpack/lib/action_view/helpers/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/clean/railties/html/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 5521 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5521/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/clean/railties/html/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 2338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2338/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/buggy/railties/html/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 107 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/107/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/clean/railties/html/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/buggy/actionpack/lib/action_view/helpers/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/buggy/railties/html/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 2338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2338/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/clean/actionpack/lib/action_view/helpers/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 949 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/949/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/buggy/actionpack/lib/action_view/helpers/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 1534 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/1534/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/buggy/railties/html/javascripts/prototype.js |
queue: { position:'end', scope:(element.id || 'global') } | queue: { position:'end', scope:(element.id || 'global'), limit: 1 } | toggle: function(element, effect) { element = $(element); effect = (effect || 'appear').toLowerCase(); var options = Object.extend({ queue: { position:'end', scope:(element.id || 'global') } }, arguments[2] || {}); Effect[Element.visible(element) ? Effect.PAIRS[effect][1] : Effect.PAIRS[effe... | 4053 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/4053/89cd5ca1691f85fa46c7344b62b867c5b082f663/effects.js/buggy/src/effects.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/buggy/actionpack/lib/action_view/helpers/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 2069 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2069/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/buggy/railties/html/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 269 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/269/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/clean/railties/html/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/buggy/actionpack/lib/action_view/helpers/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 6649 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6649/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/buggy/actionpack/lib/action_view/helpers/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/buggy/actionpack/lib/action_view/helpers/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 167 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/167/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/clean/railties/html/javascripts/prototype.js |
Element[Element.visible(element) ? 'show' : 'hide'](element); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'show' : 'hide'](element); } }, | 2338 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2338/e3655ef733f7f69a4b1175cd6843f8bfe4c32f5d/prototype.js/buggy/actionpack/lib/action_view/helpers/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'show' : 'hide'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 5523 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5523/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/buggy/actionpack/lib/action_view/helpers/javascripts/prototype.js |
element.style.display = (element.style.display == 'none' ? '' : 'none'); | Element[Element.visible(element) ? 'hide' : 'show'](element); | toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = (element.style.display == 'none' ? '' : 'none'); } }, | 742 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/742/3f913f897829fb026ef98df2d57f8da94ee5339d/prototype.js/buggy/public/javascripts/prototype.js |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.