diff --git a/xpfe/browser/samples/Makefile.in b/xpfe/browser/samples/Makefile.in index 1b7e55298f60..0b7577105ca1 100644 --- a/xpfe/browser/samples/Makefile.in +++ b/xpfe/browser/samples/Makefile.in @@ -26,10 +26,12 @@ include $(topsrcdir)/config/config.mk include $(topsrcdir)/config/rules.mk EXPORT_RESOURCE_SAMPLES = \ - $(srcdir)/dexsimplemaster.xul \ - $(srcdir)/dexsimpledialog.xul \ $(srcdir)/dexanimmaster.xul \ $(srcdir)/dexanimdialog.xul \ + $(srcdir)/dexparammaster.xul \ + $(srcdir)/dexparamdialog.xul \ + $(srcdir)/dexsimplemaster.xul \ + $(srcdir)/dexsimpledialog.xul \ $(NULL) install:: diff --git a/xpfe/browser/samples/dexparamdialog.xul b/xpfe/browser/samples/dexparamdialog.xul new file mode 100644 index 000000000000..97dc03a01aa8 --- /dev/null +++ b/xpfe/browser/samples/dexparamdialog.xul @@ -0,0 +1,221 @@ + + + + + + + + + + + + + Give me your money + + + + + Remind me + + + + + OK + + + + + Startup from URL + + + + + Startup from Params + + + + + Dump Window + + + + + diff --git a/xpfe/browser/samples/dexparammaster.xul b/xpfe/browser/samples/dexparammaster.xul new file mode 100644 index 000000000000..3e5ae2ce81a4 --- /dev/null +++ b/xpfe/browser/samples/dexparammaster.xul @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/xpfe/browser/samples/makefile.win b/xpfe/browser/samples/makefile.win index e18463574a95..03c90b306869 100644 --- a/xpfe/browser/samples/makefile.win +++ b/xpfe/browser/samples/makefile.win @@ -22,13 +22,17 @@ DIRS=sampleimages include <$(DEPTH)\config\rules.mak> install:: $(DLL) - $(MAKE_INSTALL) dexsimplemaster.xul $(DIST)\bin\res\samples - $(MAKE_INSTALL) dexsimpledialog.xul $(DIST)\bin\res\samples $(MAKE_INSTALL) dexanimmaster.xul $(DIST)\bin\res\samples $(MAKE_INSTALL) dexanimdialog.xul $(DIST)\bin\res\samples + $(MAKE_INSTALL) dexparammaster.xul $(DIST)\bin\res\samples + $(MAKE_INSTALL) dexparamdialog.xul $(DIST)\bin\res\samples + $(MAKE_INSTALL) dexsimplemaster.xul $(DIST)\bin\res\samples + $(MAKE_INSTALL) dexsimpledialog.xul $(DIST)\bin\res\samples clobber:: - rm -f $(DIST)\res\samples\dexsimplemaster.xul - rm -f $(DIST)\res\samples\dexsimpledialog.xul rm -f $(DIST)\res\samples\dexanimmaster.xul rm -f $(DIST)\res\samples\dexanimdialog.xul + rm -f $(DIST)\res\samples\dexparammaster.xul + rm -f $(DIST)\res\samples\dexparamdialog.xul + rm -f $(DIST)\res\samples\dexsimplemaster.xul + rm -f $(DIST)\res\samples\dexsimpledialog.xul