當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript dom_adapter.getDOM函數代碼示例

本文整理匯總了TypeScript中@angular/platform-browser/src/dom/dom_adapter.getDOM函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript getDOM函數的具體用法?TypeScript getDOM怎麽用?TypeScript getDOM使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了getDOM函數的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

 it('should set className via the class attribute', () => {
   const d = getDOM().createElement('div');
   getDOM().setAttribute(d, 'class', 'class1');
   expect(d.className).toEqual('class1');
 });
開發者ID:JohnnyQQQQ,項目名稱:angular,代碼行數:5,代碼來源:dom_adapter_spec.ts

示例2: constructor

 constructor(el: ElementRef) { getDOM().addClass(el.nativeElement, 'compiled'); }
開發者ID:aftab10662,項目名稱:angular,代碼行數:1,代碼來源:non_bindable_spec.ts

示例3: clickOnElement

export function clickOnElement(anchorEl: any /** TODO #9100 */) {
  var dispatchedEvent = getDOM().createMouseEvent('click');
  getDOM().dispatchEvent(anchorEl, dispatchedEvent);
  return dispatchedEvent;
}
開發者ID:aftab10662,項目名稱:angular,代碼行數:5,代碼來源:util.ts

示例4: it

 it('should set a title on the injected document', () => {
   titleService.setTitle('test title');
   expect(getDOM().getTitle()).toEqual('test title');
   expect(titleService.getTitle()).toEqual('test title');
 });
開發者ID:0xJoKe,項目名稱:angular,代碼行數:5,代碼來源:title_spec.ts

示例5: afterEach

 afterEach(() => { getDOM().setTitle(initialTitle); });
開發者ID:0xJoKe,項目名稱:angular,代碼行數:1,代碼來源:title_spec.ts

示例6: it

 it('does not show profile link', () => {
   const profileLink = getDOM().querySelector(cmpDebugElement.nativeElement, 'a.profile-link');
   expect(profileLink).toBeFalsy();
 });
開發者ID:Angular-Reference,項目名稱:angular2-app,代碼行數:4,代碼來源:user-stats.component.spec.ts

示例7: expect

 ]).then(() => { expect(getDOM().getText(body)).toEqual('Works!'); });
開發者ID:AudreyChao,項目名稱:angular,代碼行數:1,代碼來源:integration_spec.ts

示例8: it

 it('can load more', () => {
   const cmp:MicropostListComponent = cmpDebugElement.componentInstance;
   const moreBtn = getDOM().querySelector(cmpDebugElement.nativeElement, '.moreBtn');
   moreBtn.click();
   expect(cmp.posts.length).toEqual(4);
 });
開發者ID:cipengxu,項目名稱:angular2-app,代碼行數:6,代碼來源:micropost-list.component.spec.ts

示例9: expect

          .then((rootTC: any) => {
            let aboutDOMEl = rootTC.debugElement.children[0].nativeElement;

	    expect(getDOM().querySelectorAll(aboutDOMEl, 'h2')[0].textContent).toEqual('Features');
          });
開發者ID:Stenkilde,項目名稱:angular2-seed,代碼行數:5,代碼來源:about.component.spec.ts

示例10: beforeEach

 beforeEach(() => getDOM().resetBaseElement());
開發者ID:JohnnyQQQQ,項目名稱:angular,代碼行數:1,代碼來源:dom_adapter_spec.ts


注:本文中的@angular/platform-browser/src/dom/dom_adapter.getDOM函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。