Search completed in 2.31 seconds.
15 results for "Agile":
Processing XML with E4X - Archive of obsolete content
ArchiveWebE4XProcessing XML with E4X
this node has one attribute, type, which can be accessed and updated in a number of ways: alert(languages.@type); // alerts "dynamic" languages.@type = "agile"; alert(languages.@type); // alerts "agile" alert(languages.tostring()); /* alerts: <languages type="agile"><lang>javascript</lang><lang>python</lang></languages> */ note that if one wishes to make comparisons of retrieved attributes with other strings, it is necessary to convert the attribute first, even though the attribute may be converted to a string when used in other contexts (su...
... if (languages.@type.tostring() === 'agile') { ...
... } or, simply: if (languages.@type == 'agile') { ...
Introduction to client-side frameworks - Learn web development
LearnTools and testingClient-side JavaScript frameworksIntroduction
in fact, it's possible to write a fragile application that depends entirely on javascript and will not function without it.
...with the wrong priorities, it's possible for any application to be fragile, bloated, and inaccessible.
Finding window handles - Archive of obsolete content
ArchiveAdd-onsCode snippetsFinding Window Handles
// that child is hopefully the content window if (htemp) { htemp = ::getwindow(htemp, gw_child); hcontent = ::findwindowex(htemp, 0, "mozillacontentwindowclass", 0); } } // at this point hcontent is null or the content window hwnd i am not sure how "fragile" the assumptions are about the window structure, but it matched the values i got from spy++.
Styling the Amazing Netscape Fish Cam Page - Archive of obsolete content
ArchiveWebStyling the Amazing Netscape Fish Cam Page
in order to make the fish cam page as agile as the fish themselves, it was necessary to strip out all of the tables, font tags, and other non-validating stuff.
Overflowing content - Learn web development
LearnCSSBuilding blocksOverflowing content
this was fragile.
Introducing a complete toolchain - Learn web development
LearnTools and testingUnderstanding client-side toolsIntroducing complete toolchain
javascript is a lot more fragile — mistakenly calling a function that doesn't exist for example causes your javascript to break; linting javascript is therefore very important, especially for larger projects.
Creating reftest-based unit tests
MozillaCreating reftest-based unit tests
this is probably going to be a more fragile test, for the reasons described above.
Implementing QueryInterface
MozillaImplementing QueryInterface
they always make the program source more fragile.
Python binding for NSS
MozillaProjectsNSSPython binding for NSS
rewrite setup_certs.py, it was written like an expect script reacting to prompts read from a pseudo terminal but it was fragile and would hang on some systems.
modutil-tasks.html
MozillaProjectsNSSmodutil-tasks.html
nss security tools: modutil tasks newsgroup: mozilla.dev.tech.crypto task list the jar installation script is very fragile with respect to platform definitions (especially version numbers).
NSS Tools modutil-tasks
MozillaProjectsNSStoolsNSS Tools modutil-tasks
nss security tools: modutil tasks newsgroup: mozilla.dev.tech.crypto task list the jar installation script is very fragile with respect to platform definitions (especially version numbers).
Exact Stack Rooting
MozillaProjectsSpiderMonkeyInternalsGCExact Stack Rooting
this means it must be manually traced by the object's owner: this is both fragile and more expensive than using an extra reserved slot, or even just putting a new property on the object.
Aggregating the In-Memory Datasource
MozillaTechXPCOMAggregating the In-Memory Datasource
}; very painful, prone to errors, and fragile as the interfaces are still in flux (a wee bit).
Capabilities, constraints, and settings - Web APIs
WebAPIMedia Streams APIConstraints
the result has been a lot of very fragile code, or a reliance on libraries which figure this stuff out for you, then implement polyfills to patch the holes in the implementation on your behalf.
Window.event - Web APIs
WebAPIWindowevent
note: this property can be fragile, in that there may be situations in which the returned event is not the expected value.