App-MFILE-WWW
view release on metacpan or search on metacpan
share/css/qunit-1.15.0.css view on Meta::CPAN
padding: 0.4em 1em 0.4em 1em;
border-bottom: 1px solid #FFF;
list-style-position: inside;
}
#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running {
display: none;
}
#qunit-tests li strong {
cursor: pointer;
}
#qunit-tests li a {
padding: 0.5em;
color: #C2CCD1;
text-decoration: none;
}
#qunit-tests li a:hover,
#qunit-tests li a:focus {
color: #000;
share/css/qunit-2.4.0.css view on Meta::CPAN
visibility: hidden;
position: absolute;
width: 0;
height: 0;
padding: 0;
border: 0;
margin: 0;
}
#qunit-tests li strong {
cursor: pointer;
}
#qunit-tests li.skipped strong {
cursor: default;
}
#qunit-tests li a {
padding: 0.5em;
color: #C2CCD1;
text-decoration: none;
}
#qunit-tests li p a {
padding: 0.25em;
share/css/qunit.css view on Meta::CPAN
visibility: hidden;
position: absolute;
width: 0;
height: 0;
padding: 0;
border: 0;
margin: 0;
}
#qunit-tests li strong {
cursor: pointer;
}
#qunit-tests li.skipped strong {
cursor: default;
}
#qunit-tests li a {
padding: 0.5em;
color: #C2CCD1;
text-decoration: none;
}
#qunit-tests li p a {
padding: 0.25em;
share/css/start.css view on Meta::CPAN
border-style: none;
background-color:black;
color: #d0e4fe;
font-weight: bold;
padding-left: 2px;
resize: none;
}
input[type=submit] {
padding:5px 15px; background-color:#7D8998; color:black; border:2 none;
cursor:pointer;
-webkit-border-radius: 5px;
border-radius: 5px;
}
share/js/core/html.js view on Meta::CPAN
var browserNavMenu = function (len, pos) {
var r = '',
context = {
forward: 0,
back: 0,
jumpToEnd: 0,
jumpToBegin: 0
};
// context-sensitive navigation menu: selections are based on
// set length and cursor position:
// if set.length <= 1: no navigation menu at all
// if 1 < set.length <= 5: forward, back
// if set.length > 5: forward, back, jump to end/beginning
// if pos == 1 then back and jump to beginning are deactivated
// if pos == set.length then forward and jump to end are deactivated
// here in html.js, we add <span> elements for each context-sensitive
// selection. Each such element has a unique identifier, so that in
// start.js we can check for the presence of each and handle accordingly
if (len > 1) {
share/js/core/html.js view on Meta::CPAN
r += coreLib.rightPadSpaces(entry.text.concat(':'), needed);
r += '<span id="' + entry.name + '">';
r += valueToDisplay(obj, entry.prop);
r += '</span><br>';
}
}
r += '<br>';
}
// context-sensitive navigation menu: selections are based on
// set length and cursor position
r += browserNavMenu(set.length, pos);
// miniMenu at the bottom: selections are target names defined
// in the 'miniMenu' property of the dbrowser object
r += miniMenu(dbo);
// your choice section
r += yourChoice();
r += '</form>';
share/js/core/start.js view on Meta::CPAN
mmKeyListener(evt);
}
};
},
dbrowserListen = function (resultLine) {
var dbo = coreLib.dbrowserState.obj,
set = coreLib.dbrowserState.set,
pos = coreLib.dbrowserState.pos;
console.log("Listening in browser " + dbo.name);
console.log("Browser set is", set, "cursor position is " + pos);
$('#mainarea').html(dbo.source(set, pos));
if (resultLine) {
coreLib.displayResult(resultLine);
} else {
coreLib.displayResult("Displaying no. " + (pos + 1) + " of " +
coreLib.genObjStr(set.length) + " in result set");
}
$('#' + dbo.name).submit(suppressSubmitEvent);
$('input[name="sel"]').val('').focus();
$('#submitButton').on("click", function (event) {
( run in 0.288 second using v1.01-cache-2.11-cpan-4d50c553e7e )